-
Notifications
You must be signed in to change notification settings - Fork 153
Closed
Description
Your build_example/r.js example not works.
In console there is error:
Uncaught Error: Mismatched anonymous define() module: function (__WEBPACK_EXTERNAL_MODULE_1__) {
Unfortunately in my project there is same error after create bundle((
I know, errors is in
if(typeof define === 'function' && define.amd)
define(["angular"], factory);For bundled file requirejs expected this syntax:
define('/path/to/angular-cache/dist/angular-cache', ['angular'], factory)