Add biome and feature generators

This commit is contained in:
Misode
2020-07-09 22:16:54 +02:00
parent 7416e21c5d
commit dbc52ff79d
7 changed files with 34 additions and 63 deletions

View File

@@ -37,7 +37,7 @@ module.exports = (env, argv) => ({
}
}),
new HtmlWebpackPlugin({
title: 'Minecraft Generators',
title: 'Data Pack Generators Minecraft',
filename: 'index.html',
template: 'src/index.html'
}),
@@ -67,8 +67,13 @@ module.exports = (env, argv) => ({
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Sandbox Generator Minecraft',
filename: 'sandbox/index.html',
title: 'Biome Generator Minecraft',
filename: 'worldgen/biome/index.html',
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Feature Generator Minecraft',
filename: 'worldgen/feature/index.html',
template: 'src/index.html'
})
]