mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
25 lines
425 B
JavaScript
25 lines
425 B
JavaScript
|
requirejs.config({
|
||
|
baseUrl: "./build",
|
||
|
out: "./build/chat.js",
|
||
|
inlineText:true,
|
||
|
preserveLicenseComments:false,
|
||
|
shim: {
|
||
|
"libs/underscore": {
|
||
|
init: function() {
|
||
|
return _.noConflict();
|
||
|
}
|
||
|
},
|
||
|
"libs/backbone": {
|
||
|
deps: ["libs/underscore"],
|
||
|
init: function() {
|
||
|
return Backbone.noConflict();
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
paths: {
|
||
|
"moment": "libs/moment",
|
||
|
},
|
||
|
name:"chat",
|
||
|
optimize: 'none',
|
||
|
skipDirOptimize: true
|
||
|
})
|