Skip to content

Instantly share code, notes, and snippets.

@fivetanley
Created July 18, 2012 01:17
Show Gist options
  • Select an option

  • Save fivetanley/3133414 to your computer and use it in GitHub Desktop.

Select an option

Save fivetanley/3133414 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