From 651b607078f8cae8052ad890825298c0d77403ee Mon Sep 17 00:00:00 2001 From: Henri Bergius Date: Sat, 15 Dec 2018 19:35:49 +0100 Subject: [PATCH] Don't include node_modules HTML or SVG files --- webpack.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index ae98387..4949b75 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -34,10 +34,12 @@ module.exports = { { from: '**/index.html', to: './', + ignore: ['node_modules/*'], }, { from: '**/*.svg', to: './', + ignore: ['node_modules/*'], }, { from: 'theme/*',