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
And If covert .loader('vue-loader'); to .loader('my-vue-loader'); (or any name else), vuetify-loader plugin work.
Then I found plugin.js only handle latestvue-loader options. I suggest an option to specific whether to handle all vue-loader option.
/* in vuetify-loader/lib/plugin.js 24-26 */// find the rule that applies to vue filesconstvueRuleIndex=rules.findIndex(rule=>rule.use&&rule.use.find(isVueLoader))constvueRule=rules[vueRuleIndex]
The text was updated successfully, but these errors were encountered:
I have the same issue. Using @EqualMa fix resolved the issue for me. Without a full understanding, I do wonder why not always handleAllVueLoaders instead of making it an option. @KaelWD looking forward for the fix to be released.
Environment
vuetify Version: 2.1.0
vuetify-loader Version: 1.3.0
vue-cli Version: 3.0.3
Steps to reproduce
this is appear when integrate VuePress in my vuetify project. I found vuetify-component not
inject import
andregister component
by vuetify-loader. reference https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/markdown-loaderExpected Behavior
@vuepress/markdown-loader and vuetify component all work
Actual Behavior
webpack compiler error.
v-app-bar
.etc vuetify component haven't register.And If covert
.loader('vue-loader');
to.loader('my-vue-loader');
(or any name else), vuetify-loader plugin work.Then I found plugin.js only handle latest
vue-loader
options. I suggest an option to specific whether to handle all vue-loader option.The text was updated successfully, but these errors were encountered: