The official wiki/documentation site for Membercat Studios - a Minecraft content studio creating plugins, mods, modpacks, and resource packs.
- Bun v1.3.3 or later
# Install dependencies
bun install# Start Astro development server
bun run devThe site will be available at http://localhost:4321
# Build for production
bun run buildYou can preview the production build locally using either of the following methods:
# Option 1: Use the built-in Astro preview command
bun run preview
# Option 2: Use the "serve" package (must install)
serve ./dist-
Create a directory in
src/pages/docs/for your category (e.g.,modpacks/my-modpack/) -
Create an
index.mdxfile with frontmatter:--- layout: ../../../layouts/MDXLayout.astro title: My Modpack summary: A description of my modpack type: modpack # Options: modpack, mod, plugin, resource-pack, data-pack order: 1 --- Your documentation content here...
-
Optional: Create
_metadata_.jsonfor category customization:{ "name": "My Modpack", "icon": "fa-solid fa-box", "order": 1, "expandedByDefault": true }
The navigation is automatically generated from the file structure:
- Directories become navigation sections
index.mdxfiles become the main page for a section- Other
.mdxfiles become sub-pages - Ordering is controlled by
orderin metadata or alphabetical
bun run dev- Start development serverbun run build- Build for productionbun run preview- Preview production buildbun run astro- Run Astro CLI commands