aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorVincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com>2020-04-10 15:09:42 +0200
committerGitHub <noreply@github.com>2020-04-10 15:09:42 +0200
commitdef7a991b0112f906fccf802587e8bc6b19bae29 (patch)
tree71867f5f98f04d3d46dc28c1f9fc6a7dc76b0c2d /webpack.config.js
parent0e66e1d890ca775b50b43990a4d92c035c1eb5b2 (diff)
parent5420260c5e6757e2de76bce2265b01a58ae27067 (diff)
downloadwcms-def7a991b0112f906fccf802587e8bc6b19bae29.tar.gz
wcms-def7a991b0112f906fccf802587e8bc6b19bae29.zip
Merge pull request #87 from n-peugnet/feat-codemirror-w-syntax
feat: Coloration for W synthax in CodeMirror
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js2
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',