From 81c1ba4cf1e9fbc6b723a8211bbb45afff3da5a0 Mon Sep 17 00:00:00 2001 From: Henri Bergius Date: Sat, 15 Dec 2018 19:44:20 +0100 Subject: [PATCH] Fix ignore statements --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 4949b75..b85d691 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -34,12 +34,12 @@ module.exports = { { from: '**/index.html', to: './', - ignore: ['node_modules/*'], + ignore: ['node_modules/**/*.html'], }, { from: '**/*.svg', to: './', - ignore: ['node_modules/*'], + ignore: ['node_modules/**/*.svg'], }, { from: 'theme/*',