最赞回答 / kiky_zhang
方法一: 把vue-loader版本替换为14方法二: 根据vue-loader官方提供的15版本的声明方法,定义plugin。
const VueLoaderPlugin = require('vue-loader/lib/plugin') module.exports = { module: { rules: [ ...
2018-05-24
自己写的一点心得,webpack和vue-loader都是最新版本,喜欢的可以看下。https://www.jianshu.com/p/b055f9ab510c
2018-05-24
最新回答 / 三只松鼠
应该是vue-loader15的问题,可以降到14版本,webpack.config.js里面注释掉下面两个VueLoaderPlugin有关的:<...code...><...code...>
2018-05-23
已采纳回答 / adolfVictor
.balelcr文件中看是不是:"plugins":["transform-vue-jsx"]2.package.json文件中有没有<...图片...>
2018-05-22
报错这个:
Module parse failed: Unexpected character '#' (26:0)
You may need an appropriate loader to handle this file type.
需要webpack.config.js中添加
// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
// ...
plugins: [
new VueLoaderPlugin()
]
}
Module parse failed: Unexpected character '#' (26:0)
You may need an appropriate loader to handle this file type.
需要webpack.config.js中添加
// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
// ...
plugins: [
new VueLoaderPlugin()
]
}
2018-05-21
Error: Cannot find module 'webpack/schemas/WebpackOptions.json'
2018-05-21