运行命令
C:\Users\luozhuang\demo2>npm run build
出错提示:
ERROR in ./node_modules/mpvue-entry/dist/pagesMemberDistributionIndex.js
Module build failed: Error: [mpvue-loader] need "fileExt" option in file "build/vue-loader.conf.js",init a new project and copy the directory "build/" to this porject, or just check the "fileExt" option
at Object.module.exports (C:\Users\luozhuang\demo2\node_modules\mpvue-loader\lib\loader.js:55:11)
解决方法:
2种方法
方法1、升级最新的mpvue2.0,可以自行参考其他文章。
方法2、不升级(如遇到bug问题请自己解决)。
package.json 中
"mpvue": "^1.0.18",
"mpvue-loader": "^1.1.4",
"mpvue-template-compiler": "^1.0.18"
改为
"mpvue": "1.0.18",
"mpvue-loader": "1.1.4",
"mpvue-template-compiler": "1.0.18"
至于上面修改,也就是 NPM依赖包版本号 ~和^和*的区别,可以自行参考其他文章。
标签:1.0,18,js,报错,build,mpvue,loader From: https://blog.51cto.com/u_696257/6151323