Skip to content

Commit

Permalink
feat: use hidden-source-map
Browse files Browse the repository at this point in the history
There is no reason to add source-map comment, since we know that the source map is generated.
  • Loading branch information
gajus committed Jan 11, 2017
1 parent d6a1013 commit 157a937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/factories/createCompilerConfiguration.js
Expand Up @@ -11,7 +11,7 @@ export default (webpackConfiguration: Object, nodeExternalsWhitelist: Array<stri
const manifestPath = path.resolve(webpackConfiguration.context, 'manifest.json');

const compilerConfiguration = webpackMerge(webpackConfiguration, {
devtool: 'sourcemap',
devtool: 'hidden-source-map',
externals: [
nodeExternals({
importType: 'commonjs2',
Expand Down

0 comments on commit 157a937

Please sign in to comment.