Getting Started
Welcome to Astro Modular! This quick start guide will get your blog running in minutes. Choose your preferred workflow below.
Prerequisites & Installation
You’ll need:
- Node.js 18+
- pnpm (recommended) or npm
Quick Setup
# Install pnpm
npm install -g pnpm
# Install dependencies
pnpm install
# Preview
pnpm dev # or pnpm preview
# Available at http://localhost:5000
# Build for production
pnpm build
Choose Your Workflow
Using Obsidian?
Perfect! Astro Modular is designed specifically for Obsidian users.
Quick Start:
- Open folder as vault: Navigate to
src/content/in Obsidian - Trust the author and enable the preconfigured plugins
- Use the Astro Modular Settings wizard to configure your theme and preferences
- Start writing with the included templates and hotkeys
What you get:
- Seamless publishing: write in Obsidian, publish to your blog with git
- Versatile internal linking support:
[[Wikilinks]]and markdown links work perfectly - Obsidian-specific features: callouts, highlighting, and more display beautifully
- Preconfigured plugins & hotkeys: all optimized for blogging
Next Steps:
- Read the Obsidian Vault Guide for detailed setup
- Use the Astro Modular Settings plugin to customize your theme and preferences
- Start writing your first post with the included templates
Not Using Obsidian?
No problem! You can still use Astro Modular with any editor.
Quick Start:
- Edit
src/config.tsto customize your site settings - Create content in
src/content/posts/using standard markdown - Deploy when ready
Next Steps:
- Read the Complete Setup Guide for detailed configuration
- Explore the Formatting Reference for markdown features
- Customize your theme and layout in
src/config.ts
Essential Configuration
Update these core settings in src/config.ts:
export const siteConfig = {
site: 'https://yourdomain.com',
title: 'Your Blog Title',
description: 'Your blog description',
author: 'Your Name',
language: 'en',
}
Key Features
17+ Beautiful Themes
Switch between Oxygen, Minimal, Nord, Dracula, and more. Use Ctrl+K → “Change Theme” for instant switching.
Command Palette
Press Ctrl+K for instant navigation, search, and theme switching.
Responsive & Fast
Optimized for performance with automatic image optimization and lazy loading.
Smart Linking
- Wikilinks (Obsidian users):
[[Post Title]] - Standard links (all users):
[Post Title](posts/post-slug)
Content Types
- Posts - Blog articles with tags and linked mentions
- Pages - Static pages like About, Contact
- Projects - Portfolio items and showcases
- Documentation - Guides and references
Next Steps
For Obsidian Users:
- Set up the vault - Open
src/content/in Obsidian - Configure with the plugin - Use Astro Modular Settings
- Start writing - Use the included templates and hotkeys
- Read the vault guide - Obsidian Vault Guide
For Non-Obsidian Users:
- Customize your site - Edit
src/config.ts - Read the full guide - Complete Setup Guide
- Explore features - Formatting Reference
- Start writing - Create your first post
Need Help?
- Complete Setup Guide: Configuration Documentation
- Obsidian Vault Guide: Obsidian Vault Guide
- Formatting Reference: Formatting Reference
Your modular Astro blog is ready to go!
Formatting Reference
...create internal links using double brackets (wikilinks) or with standard markdown. For example: [[Getting Started]] or [[Astro Suite Obsidian Vault Guide (Astro Modular)]]. ```markdown For...