diff options
Diffstat (limited to 'packages/dev-tools-pages/webpack.config.js')
-rw-r--r-- | packages/dev-tools-pages/webpack.config.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/dev-tools-pages/webpack.config.js b/packages/dev-tools-pages/webpack.config.js index d025737f7..33ad11498 100644 --- a/packages/dev-tools-pages/webpack.config.js +++ b/packages/dev-tools-pages/webpack.config.js @@ -84,7 +84,11 @@ module.exports = (_env, argv) => { let plugins = [ new CleanWebpackPlugin('public'), ...pages.map(p => new HtmlWebpackPlugin(p)), - new CopyWebpackPlugin([{ from: 'assets/crawl.html', to: 'index.html' }, { from: 'assets/fonts', to: 'fonts' }]), + new CopyWebpackPlugin([ + { from: 'assets/crawl.html', to: 'index.html' }, + { from: 'assets/fonts', to: 'fonts' }, + { from: 'assets/images', to: 'images' }, + ]), ]; if (argv.mode === 'development') { config.mode = 'development'; |