Add resource pack generators: blockstates and model

This commit is contained in:
Misode
2021-11-05 01:22:23 +01:00
parent 6d8829ecde
commit fba80da273
11 changed files with 115 additions and 38 deletions

View File

@@ -26,6 +26,16 @@ export default defineConfig({
title: getTitle({ id: 'title.changelog', page: true }),
template: template,
}),
html({
fileName: `worldgen/index.html`,
title: getTitle({ id: 'worldgen', category: true }),
template: template,
}),
html({
fileName: `assets/index.html`,
title: getTitle({ id: 'assets', category: true }),
template: template,
}),
...config.generators.map(m => html({
fileName: `${m.url}/index.html`,
title: getTitle(m),