Created
December 20, 2018 10:32
-
-
Save unlocomqx/b9e54b1a8d5c06a4fb72bb27179fb262 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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