From ebd20c8012d27a9f92d15987b9892def027a65ac Mon Sep 17 00:00:00 2001 From: David Stensland Date: Thu, 9 May 2019 18:44:43 -0700 Subject: [PATCH] turn on sourcemaps --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 3ddc2f2c..0eaefd47 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -4,6 +4,7 @@ const path = require('path'); module.exports = { mode: 'production', + devtool: 'source-map', entry: { index: './packages/index.js', TranscriptEditor: './packages/components/transcript-editor/index.js', @@ -81,4 +82,4 @@ module.exports = { root: 'ReactDOM' } } -}; \ No newline at end of file +};