Skip to content

Instantly share code, notes, and snippets.

@guilhermerodrigues680
Created March 16, 2021 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guilhermerodrigues680/535188bab83972e54e32a28fdbac14a4 to your computer and use it in GitHub Desktop.
Save guilhermerodrigues680/535188bab83972e54e32a28fdbac14a4 to your computer and use it in GitHub Desktop.
Build not minified files using @vue/cli
module.exports = {
//chainWebpack: config => config.optimization.minimize(false)
chainWebpack: config => {
config.plugin('html').tap(args => {
args[0].minify = false
args[0].title = "Primeiro Projeto"
return args
}),
config.optimization.minimize(false)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment