vue项目打包报错

时间:2024-03-21 14:08:56

vue项目打包报错

老项目拉下来后改了些样式,再次打包他会报错
npm ERR! missing script: build npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Administrator\AppData\Roaming\npm-cache_logs\2020-05-12T06_25_52_458Z-debug.log
vue项目打包报错
解决办法:
找到package.json的,看有没有安装optimize-css-assets-webpack-plugin这个插件
vue项目打包报错
发现是我的css用的,5.0的版本和webpack的3.6版本不匹配,然后输入命令行:npm i [email protected],之后我再次打包就可以了
如果你是自己写的,打包报这个错,找package.json里的scripts,应该是你没有写build
vue项目打包报错
你给他添加一个build项,值为vue-cli-service build