Refactor error view and make loot table default

This commit is contained in:
Misode
2020-06-18 23:01:13 +02:00
parent a5ffc57ca6
commit b9f53b79c9
5 changed files with 24 additions and 27 deletions

View File

@@ -36,37 +36,37 @@ module.exports = (env, argv) => ({
new HtmlWebpackPlugin({
title: 'Minecraft Generators',
filename: 'index.html',
template: 'src/home.html'
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Loot Table Generator Minecraft',
filename: 'loot-table/index.html',
template: 'src/generator.html'
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Predicate Generator Minecraft',
filename: 'predicate/index.html',
template: 'src/generator.html'
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Advancement Generator Minecraft',
filename: 'advancement/index.html',
template: 'src/generator.html'
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Dimension Generator Minecraft',
filename: 'dimension/index.html',
template: 'src/generator.html'
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Dimension Type Generator Minecraft',
filename: 'dimension-type/index.html',
template: 'src/generator.html'
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Sandbox Generator Minecraft',
filename: 'sandbox/index.html',
template: 'src/generator.html'
template: 'src/index.html'
})
]
})