Skip to content

Instantly share code, notes, and snippets.

@cesine
Created September 25, 2012 00:47
Show Gist options
  • Save cesine/3779339 to your computer and use it in GitHub Desktop.
Save cesine/3779339 to your computer and use it in GitHub Desktop.
Require.js shims
require.config({
shim: {
underscore: {
exports: '_'
},
backbone: {
deps: ["underscore", "jquery"]
, exports: "Backbone"
}
}
});
require([
'jquery'
, 'underscore'
, 'backbone']
, function (
$
, _
, Backbone) {
//APP initialization
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment