From 1c8ea1336e9e0c018ceb38cba90943f1b50eb23a Mon Sep 17 00:00:00 2001 From: August Skare Date: Thu, 25 Oct 2018 10:50:09 +0100 Subject: Feature/animations (#6) * test animation * test two part video * new video test * replace videos with gifs * rename videos folder to images * sol-cov gifs * renames variables * compiler gif * change in hero srcset * better positioning of hero image --- packages/dev-tools-pages/webpack.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'packages/dev-tools-pages/webpack.config.js') 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'; -- cgit v1.2.3