使用npm run build打包报错: Expected space or tab after ‘//‘ in comment 或Extra semicolon(semi)

时间:2024-04-03 07:15:24

在vue中打包时,出现以下错误,是由于eslint语法限制。

在网上搜索最多的就是修改build/webpack.base.conf.js中的配置。但是在vue cli3里不再有build文件夹。

错误如下所示:
使用npm run build打包报错: Expected space or tab after ‘//‘ in comment 或Extra semicolon(semi)----------------------------------------------------分隔符----------------------------------------------------------
使用npm run build打包报错: Expected space or tab after ‘//‘ in comment 或Extra semicolon(semi)

解决办法:修改vue.config.js中的配置
使用npm run build打包报错: Expected space or tab after ‘//‘ in comment 或Extra semicolon(semi)
在下面的位置加上: lintOnSave:false 即可正常打包。
使用npm run build打包报错: Expected space or tab after ‘//‘ in comment 或Extra semicolon(semi)