diff options
author | n-peugnet <n.peugnet@free.fr> | 2020-04-09 16:43:10 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2020-04-09 16:44:26 +0200 |
commit | 9f3d969508114c692949b55de39277fd6584c7d3 (patch) | |
tree | 6aacdbaba6efa77410812a947925907d12fb9c51 /webpack.config.js | |
parent | b49830232096951202688bd775193424880bbd11 (diff) | |
download | wcms-9f3d969508114c692949b55de39277fd6584c7d3.tar.gz wcms-9f3d969508114c692949b55de39277fd6584c7d3.zip |
feat: Coloration for W synthax in CodeMirror
Closes #54
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index f6af5a3..6611148 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -6,7 +6,7 @@ module.exports = (env) => { // Environment dependent mode: env == 'dev' ? 'development' : 'production', devtool: env == 'dev' ? - 'cheap-eval-source-map' : + 'eval-cheap-module-source-map' : env == 'dist' ? 'hidden-source-map' : 'source-map', |