temp webpack fix

This commit is contained in:
Sean Macfarlane
2021-03-26 18:07:06 -04:00
parent 08b8038c60
commit b73d547223
3 changed files with 400 additions and 616 deletions

View File

@@ -1,4 +1,6 @@
/* eslint-disable import/no-extraneous-dependencies */
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const commonPaths = require('./paths');
@@ -79,4 +81,11 @@ module.exports = {
),
},
},
plugins: [
new HtmlWebpackPlugin({
template: commonPaths.templatePath,
favicon: './app/images/favicon.ico',
}),
],
};