1234567891011121314151617181920 |
- ({
- appDir: "../",
- baseUrl: "scripts/",
- dir: "../../webapp-build",
- //Comment out the optimize line if you want
- //the code minified by UglifyJS
- optimize: "none",
- paths: {
- "jquery": "empty:"
- },
- modules: [
- //Optimize the application files. jQuery is not
- //included since it is already in require-jquery.js
- {
- name: "main"
- }
- ]
- })
|