Skip to content

Instantly share code, notes, and snippets.

@thiagosf
Last active May 11, 2018 15:04
Show Gist options
  • Select an option

  • Save thiagosf/ac4f7a5bd42592a7b76d41d49521ada3 to your computer and use it in GitHub Desktop.

Select an option

Save thiagosf/ac4f7a5bd42592a7b76d41d49521ada3 to your computer and use it in GitHub Desktop.
Melhorando performance para compilar vue.js

Melhorando performance para compilar vue.js

build/webpack.prod.conf.js

Desativar sourceMap:

new webpack.optimize.UglifyJsPlugin({
  compress: {
    warnings: false
  },
  sourceMap: false
}),

config/index.js

Desativar productionSourceMap:

module.exports = {
  build: {
    ...
    productionSourceMap: false,
    ...
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment