You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was having problems with running npm run prod because angular wouldn't load the minified functions correctly and logging this error:
Error: [$injector:modulerr] Failed to instantiate module app due to: [$injector:modulerr] Failed to instantiate module app.config due to: [$injector:unpr] Unknown provider: e http://errors.angularjs.org/1.5.8/$injector/unpr?p0=e t
Resolved it by adding angularjs-annotate to .babelrc plugin:
However, as a result of this fix, I started getting error TypeError: "e._f(...) is not a function", which is related to global vue filters Vue.filter(...).
Is there any way to get the plugin angularjs-annotate to work on angular code only, ignoring my vue code?
The text was updated successfully, but these errors were encountered:
I was having problems with running
npm run prod
because angular wouldn't load the minified functions correctly and logging this error:Resolved it by adding
angularjs-annotate
to .babelrc plugin:However, as a result of this fix, I started getting error
TypeError: "e._f(...) is not a function"
, which is related to global vue filtersVue.filter(...)
.Is there any way to get the plugin angularjs-annotate to work on angular code only, ignoring my vue code?
The text was updated successfully, but these errors were encountered: