diff options
author | crupest <crupest@outlook.com> | 2020-08-07 00:20:56 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-08-07 00:20:56 +0800 |
commit | 60124e9d83ae2b4ab90d5d45cd5cdfcacc9c3e1b (patch) | |
tree | f7e1848583ea74daa6ada134f27e39b4c3fdafda /Timeline/ClientApp/webpack.config.dev.js | |
parent | a656f37811661db502606b674f91ef1a7005d108 (diff) | |
download | timeline-60124e9d83ae2b4ab90d5d45cd5cdfcacc9c3e1b.tar.gz timeline-60124e9d83ae2b4ab90d5d45cd5cdfcacc9c3e1b.tar.bz2 timeline-60124e9d83ae2b4ab90d5d45cd5cdfcacc9c3e1b.zip |
Use eval-cheap-module-source-map for development.
Diffstat (limited to 'Timeline/ClientApp/webpack.config.dev.js')
-rw-r--r-- | Timeline/ClientApp/webpack.config.dev.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/ClientApp/webpack.config.dev.js b/Timeline/ClientApp/webpack.config.dev.js index 80295664..fe5528ce 100644 --- a/Timeline/ClientApp/webpack.config.dev.js +++ b/Timeline/ClientApp/webpack.config.dev.js @@ -15,7 +15,7 @@ module.exports = (env) => { return {
entry,
mode: 'development',
- devtool: 'eval-source-map',
+ devtool: 'eval-cheap-module-source-map',
module: {
rules: [
...commonRules,
|