Minecraft Crafting Recipe is a web app for searching crafting recipes of Minecraft items, created with Vue on Vite.
pnpm install
pnpm run devMake sure to change base value in vite.config.ts file to your repository name!
pnpm run buildStatic site generating is powered by Vite SSG. The output will be on dist folder.
Follow these instructions in order to process your own data(for example when updating versions).
- Empty all the folders/files inside
public/assets/datafolder unless you want to merge into the existing data. - Download Minecraft assets files.
- Copy
data/minecraft/recipefolder entirely inside that JAR file intodata/raw_datafolder in project directory. - Copy
data/minecraft/tagsfolder entirely inside that JAR file intodata/raw_datafolder in project directory. - Copy language files you want to use from
assets/minecraft/langtodata/raw_data/langfolder in project directory.en_us.jsonfile is necessary. - Put item render images into
data/raw_data/rendersfolder. You can use mods like Isometric Render, BlockExporter, or Icon Exporter. - Run
pnpm run processcommand. - Edit
minecraftVersionvariable inshared/constants/minecraft.tsfile.