Skip to content

Commit 2a8151c

Browse files
committed
Modify sourcemap settings to match new UI settings
1 parent d4d53e0 commit 2a8151c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

make-webpack-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ module.exports = function(options) {
159159
return [autoprefixer]
160160
},
161161

162-
devtool: specialOptions.sourcemaps ? 'cheap-module-source-map' : null,
162+
devtool: specialOptions.sourcemaps ? 'nosource-source-map' : null,
163163

164164
}, options)
165165

webpack-hot-dev-server.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = require("./make-webpack-config.js")({
3838
chunkFilename: "[id].js"
3939
},
4040

41-
devtool: "eval",
41+
devtool: "eval-source-maps",
4242
devServer: {
4343
port: 3200,
4444
path: path.join(__dirname, "dev-helpers"),

0 commit comments

Comments
 (0)