diff options
author | Vincent Peugnet <33429034+vincent-peugnet@users.noreply.github.com> | 2020-04-10 15:09:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 15:09:42 +0200 |
commit | def7a991b0112f906fccf802587e8bc6b19bae29 (patch) | |
tree | 71867f5f98f04d3d46dc28c1f9fc6a7dc76b0c2d /webpack.config.js | |
parent | 0e66e1d890ca775b50b43990a4d92c035c1eb5b2 (diff) | |
parent | 5420260c5e6757e2de76bce2265b01a58ae27067 (diff) | |
download | wcms-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.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', |