generator-init
Version:
A generator for INIT.
22 lines (16 loc) • 417 B
JavaScript
/**
* RequireJS configuration
*/
require.config({
// Initialize the application with the main application file
deps: ['plugins/console', 'main'],
paths: {
jquery: '../components/jquery/jquery.min'
// More additional paths here
},
shim: {
// If you need to shim anything, put it here
},
// Prevent caching issues, by adding an additional URL argument
urlArgs: 'bust=' + (new Date()).getDate()
});