From cfc9e48e07e160e1b3ae265e620dfb9dcd29f075 Mon Sep 17 00:00:00 2001 From: Fabien BOURGEOIS Date: Tue, 14 May 2019 15:41:54 +0200 Subject: [PATCH] [TYPO]Minor : webpack config --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 4105f93..757f323 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -3,7 +3,7 @@ const path = require('path'); module.exports = { entry: './index.jsx', mode: 'production', - //devtool: 'cheap-eval-source-map', + //devtool: 'source-map', target: 'web', output: { filename: "bundle.js", @@ -21,7 +21,7 @@ module.exports = { options: { plugins: [["jsx-dom-expressions", {moduleName: 'solid-js/dom'}]] } - } + }, }] } }