Include 1.15 in titles for SEO

This commit is contained in:
Misode
2020-12-19 18:02:15 +01:00
parent 0d8a7c00ee
commit 394dd27d85
2 changed files with 5 additions and 5 deletions

View File

@@ -38,22 +38,22 @@ module.exports = (env, argv) => ({
}
}),
new HtmlWebpackPlugin({
title: 'Data Pack Generators Minecraft 1.16, 1.17',
title: 'Data Pack Generators Minecraft 1.15, 1.16, 1.17',
filename: 'index.html',
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Data Pack Generators Minecraft 1.16, 1.17',
title: 'Data Pack Generators Minecraft 1.15, 1.16, 1.17',
filename: 'settings/fields/index.html',
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Data Pack Generators Minecraft 1.16, 1.17',
title: 'Data Pack Generators Minecraft 1.15, 1.16, 1.17',
filename: '404.html',
template: 'src/index.html'
}),
...config.models.map(m => new HtmlWebpackPlugin({
title: `${m.name} Generator${m.category === true ? 's' : ''} Minecraft 1.16, 1.17`,
title: `${m.name} Generator${m.category === true ? 's' : ''} Minecraft 1.15, 1.16, 1.17`,
filename: `${m.id}/index.html`,
template: 'src/index.html'
}))