Skip to content

Commit 85ed751

Browse files
authored
Set webpack configuration.devtool to 'source-map' instead of 'sourcemap' (#662)
Webpack 5 is more strict, so we have to use 'source-map'.
1 parent 6919f4c commit 85ed751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ module.exports = {
2626

2727
// This will expose source map files so that errors will point to your
2828
// original source files instead of the transpiled files.
29-
devtool: 'sourcemap',
29+
devtool: 'source-map',
3030
};

0 commit comments

Comments
 (0)