Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Fix devtool config broken in #5589
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejolley committed Jan 28, 2022
1 parent 6cf9c4c commit 7579601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const sharedConfig = {
watchOptions: {
ignored: /node_modules/,
},
devtool: NODE_ENV === 'development',
devtool: NODE_ENV === 'development' ? 'source-map' : false,
};

// Core config for shared libraries.
Expand Down

0 comments on commit 7579601

Please sign in to comment.