Skip to content

Instantly share code, notes, and snippets.

@jugglinmike
Created February 12, 2014 02:36
Show Gist options
  • Save jugglinmike/8949005 to your computer and use it in GitHub Desktop.
Save jugglinmike/8949005 to your computer and use it in GitHub Desktop.
RequireJS confusion
require.config({
paths: {
"alias-path": "real-path"
}
});
require(["real-path", "alias-path"], function(r, a) {
// never invoked
});
// Uncaught Error: Load timeout for modules: alias-path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment