執行npm run build報如下錯誤,希望老師幫忙看一下
Module Error (from ./node_modules/vue-loader/lib/index.js):
vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config.
Module Error (from ./node_modules/vue-loader/lib/index.js):
vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config.
2019-10-10
舉報
2019-10-11
//?webpack配置文件? const?path?=?require('path'); const?htmlWebpackPlugin?=?require('html-webpack-plugin'); const?VueLoaderPlugin?=?require('vue-loader/lib/plugin');?//引入這行module.exports?=?{ ????mode:'none', ????entry:'./src/main.js', ????output:{ ????????path:path.join(__dirname,'./dist'), ????????filename:'bundle.js' ????}, ????plugins:[ ????????new?htmlWebpackPlugin({ ????????????template:path.join(__dirname,'./src/index.html'), ????????????filename:'index.html' ????????}),????????? ????????new?VueLoaderPlugin()?//new一個實例 ????] }2019-10-15
像這樣就好了
2019-10-15
像這樣就好了