Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Last active December 20, 2015 00:49
Show Gist options
  • Save wrumsby/6044532 to your computer and use it in GitHub Desktop.
Save wrumsby/6044532 to your computer and use it in GitHub Desktop.
RequireJS shim configuration.
require.config({
...
shim: {
'backbone': {
deps: ['underscore', 'jquery'],
exports: 'Backbone'
},
'underscore': {
exports: '_'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment