Skip to content

Commit

Permalink
fix(build): don't inline sourcemaps (#3262)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva authored Nov 25, 2016
1 parent fe4b35b commit 859d905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/angular-cli/models/webpack-build-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function getWebpackCommonConfig(
if (appConfig.scripts.length > 0) { entry['scripts'] = scripts; }

return {
devtool: sourcemap ? 'source-map' : 'eval',
devtool: sourcemap ? 'source-map' : false,
resolve: {
extensions: ['.ts', '.js'],
modules: [path.resolve(projectRoot, 'node_modules')]
Expand Down

0 comments on commit 859d905

Please sign in to comment.