From 7d129d4e96bf0ac94e71f3c4cc19a130367ed718 Mon Sep 17 00:00:00 2001 From: Lewis Moten Date: Sun, 1 Sep 2019 20:58:58 -0500 Subject: [PATCH] chore: write source maps with production Issue #47 --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index b37a7ed..8870650 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -14,6 +14,7 @@ const base = { module.exports = [ Object.assign({}, base, { mode: "production", + devtool: "source-map", output: Object.assign({}, base.output, { path: path.resolve(__dirname, "lib") })