- Set base path to '/cg-ai' in astro.config.mjs - Update favicon to use metagov.png with dynamic base path - Add deployment documentation for subdirectory configuration - Rebuild dist with correct asset paths CSS and other assets will now load correctly when deployed to example.com/cg-ai/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
base: '/cg-ai',
|
|
});
|