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'}]] } - } + }, }] } }