This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 244
Issue running with Nextjs #125
Comments
I got the same error. Then I tried to add const VueLoaderPlugin = require('vue-loader/lib/plugin');
module.exports = {
webpack: (config, options) => {
config.module.rules.push({
test: /\.vue$/,
loader: 'vue-loader',
});
config.plugins.push(new VueLoaderPlugin());
return config;
},
}; Unfortunately, this created a new issue: Looking at the console error message, it seems that there is an issue with parsing Here's the console error message for reference:
|
3 tasks
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I got this error
My babel.config.js
The text was updated successfully, but these errors were encountered: