Skip to content

Instantly share code, notes, and snippets.

@zrod
Forked from fivetanley/main.js
Created July 18, 2012 01:18
Show Gist options
  • Save zrod/3133416 to your computer and use it in GitHub Desktop.
Save zrod/3133416 to your computer and use it in GitHub Desktop.
requirejs configuration example
( function() {
var myLoader = require.config( {
baseUrl: '/js'
// any other settings here.
});
myLoader( [ 'list', 'of', 'deps' ], function( dep1, dep2, dep3 ) {
/* do stuff here */
});
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment