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
This commit is contained in:
August Skare
2018-10-25 10:50:09 +01:00
committed by GitHub
parent a4de585feb
commit 1c8ea1336e
10 changed files with 41 additions and 9 deletions

View File

@@ -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';