23 lines
740 B
JavaScript
23 lines
740 B
JavaScript
require.config({
|
|
paths: {
|
|
'domReady': '../components/requirejs-domready/domReady',
|
|
'jquery': '../components/jquery/dist/jquery.min',
|
|
'handlebars.runtime': '../components/handlebars/handlebars.runtime.amd',
|
|
'bootstrap': '../components/bootstrap/dist/js/bootstrap.min',
|
|
'bootstrap.wysihtml5': '../src/bootstrap3-wysihtml5',
|
|
'rangy': '../components/rangy-1.3/rangy-core',
|
|
'wysihtml5': '../dist/amd/wysihtml5',
|
|
'bootstrap.wysihtml5.commands': '../dist/amd/commands',
|
|
'bootstrap.wysihtml5.templates': '../dist/amd/templates',
|
|
'bootstrap.wysihtml5.en-US': '../dist/locales/bootstrap-wysihtml5.en-US'
|
|
},
|
|
shim: {
|
|
'bootstrap': {
|
|
deps: ['jquery']
|
|
}
|
|
},
|
|
deps: [
|
|
'./start-dev'
|
|
]
|
|
});
|