Fixing GA tag not included in play domain

The GA tag was not properly included because the index.html file that contained it was overwritten by Webpack's HtmlWebpackPlugin.
This commit is contained in:
David Négrier 2021-03-05 10:00:11 +01:00
parent bf8e8bf777
commit 15405633d1
3 changed files with 4 additions and 3 deletions

View file

@ -39,7 +39,7 @@ module.exports = {
plugins: [
new HtmlWebpackPlugin(
{
template: './dist/index.tmpl.html',
template: './dist/index.tmpl.html.tmp',
minify: {
collapseWhitespace: true,
keepClosingSlash: true,