From 64f9763f61573fa277b904a696a4ea972206b55c Mon Sep 17 00:00:00 2001 From: evan Date: Tue, 8 Oct 2019 16:20:58 -0700 Subject: [PATCH] add bundle to gitignore --- .gitignore | 1 + webpack/prod.config.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3c3629e..9bfb672 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules +dist/bundle.js \ No newline at end of file diff --git a/webpack/prod.config.js b/webpack/prod.config.js index 07aa885..1af62ff 100644 --- a/webpack/prod.config.js +++ b/webpack/prod.config.js @@ -21,8 +21,8 @@ module.exports = { } }, { - test: /\.(s*)css$/, - use: [ 'style-loader', 'css-loader', 'sass-loader' ] + test: /\.scss$/, + use: [ 'style-loader', 'css-loader', 'sass-loader?sourceMap' ] } ] }