The Vanilla² website contains the mod's landing page, news, documentation, an archived bug-tracker notice, and reusable UI templates. News articles and documentation are stored in the repository and rendered from Markdown. The project was archived on 2 September 2026, so the production build contains static files only.
This project uses the BLOBSFER Licence 1.0. It permits private use and contributions to the official repository, but does not permit independent publication, distribution, or deployment. See LICENSE.
- Landing page for the Vanilla² Minecraft Fabric mod.
- Repository-backed Markdown documentation.
- Repository-backed news articles with private-draft support.
- Read-only notice at the former bug-tracker route.
- Reusable UI component and page templates.
- Astro static pages
- React
- Tailwind CSS v4 via Vite
- gray-matter and MDX for repository content
Add Markdown files under src/docs/. Their paths determine their /docs routes.
Add Markdown files under news/. Supported frontmatter fields are:
---
title: Article title
tag: announcements
image: "@cdn/news/article-image.svg"
imageAlt: Description of the article image
showImageOnPage: false
author: Author name
authorImage: "@cdn/news/author-image.svg"
published_date: 30/07/2026
private: false
---published_date is required and must use dd/mm/yyyy. It controls the article's displayed publication date and newest-first ordering. private: true excludes the article from the statically generated public news listing and pages. Images must be stored under cdn/news/ and are referenced directly as /cdn/... at runtime.
The former bug tracker is archived. /bugs remains as a static explanatory page, but it does not fetch reports or accept new submissions.
Use Node.js 22.12 or newer, then install dependencies.
npm installStart the development server.
npm run devBuild the production website.
npm run build