Skip to content

Instantly share code, notes, and snippets.

@justinmc
Created March 10, 2014 07:10
Show Gist options
  • Select an option

  • Save justinmc/9460674 to your computer and use it in GitHub Desktop.

Select an option

Save justinmc/9460674 to your computer and use it in GitHub Desktop.
Requirejs Sample Main File
requirejs.config({
baseUrl: 'app/scripts',
paths: {
sprite: 'sprite',
spriteDude: 'sprites/dude'
}
});
requirejs(['jquery'],
function ($) {
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment