Getting Started
Welcome to the wiki! This is your knowledge base for documentation, guides, and reference material.
Installation
Follow these steps to get up and running:
- Clone the repository
- Install dependencies
- Start the development server
Bash
npm install
npm run devConfiguration
The site is configured through blog.config.mjs at the project root. This file controls everything from site metadata to feature flags.
Site metadata
Set your site name, description, and URL:
JavaScript
const blogConfig = {
siteName: "@alexcmgit",
siteDescription: "A dev blog.",
siteUrl: "https://alexcastro.dev",
};Themes
Choose your light and dark themes:
JavaScript
theme: {
light: "light",
dark: "ayu-mirage",
},What's next?
Check out the Markdown Guide to learn about all supported formatting, or browse the sidebar for more topics.