ERROR Invalid options in vue.config.js: "filenameHashing" is not allowed

最近使用vue作为前端开发的框架,前端开发完毕后需要使用vue cli3 编译成静态文件,编译的文件不需要hash,因此加入配置:

module.exports = {
  baseUrl: BASE_URL,
  outputDir: 'dist',
  filenameHashing: false,
  chainWebpack: config => {
    config.plugins.delete('preload')
    config.plugins.delete('prefetch')
    config.resolve.alias
      .set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components'))
      .set('_c', resolve('src/components'))
      .set('_conf', resolve('config'))
  }
}

然后 npm run build 发现报错,后来查找官网发现某个版本的cli server 存在bug,去node_modules/@vue/cli-server/lib/options.js中发现配置项没有filenameHashing,当前版本是:3.0.0-beta.10 ,好久之前的版本了,于是升级:

解决:

1. sudo npm uninstall @vue/[email protected]

2. sudo npm install @vue/cli-service 

最新版本:+ @vue/[email protected] 被添加

再次 npm run build ,没有报错了,hash被顺利去掉.

你可能感兴趣的:(Vue,疑难杂症)