From b6394836f01fe33db0c64277464bac9f285274da Mon Sep 17 00:00:00 2001 From: NikolaBorislavovHristov Date: Thu, 14 Jun 2018 15:18:47 +0300 Subject: [PATCH] static files grouped in directories by type --- webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 0e83fcb05..2243180e5 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -89,7 +89,8 @@ module.exports = { } }), new CopyWebpackPlugin([ - { from: 'images' } + { from: 'images', to: 'images' }, + { from: 'fonts', to: 'fonts' } ]) ] }; \ No newline at end of file