Skip to content

Instantly share code, notes, and snippets.

@unlocomqx
Created December 20, 2018 10:32
Show Gist options
  • Save unlocomqx/b9e54b1a8d5c06a4fb72bb27179fb262 to your computer and use it in GitHub Desktop.
Save unlocomqx/b9e54b1a8d5c06a4fb72bb27179fb262 to your computer and use it in GitHub Desktop.
// How I configured my plugins
new TerserPlugin({
terserOptions: {
sourceMap: true,
parallel: true,
cache: true,
compress: true,
mangle: true,
toplevel: false,
sourceMap: true,
output: {
comments: /@license/,
}
}
}),
new webpack.SourceMapDevToolPlugin({
filename: 'sourcemap/[name].js.map',
publicPath: 'https://my_domain.net/',
fileContext: 'public'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment