Add the CLI, site, and sample content so the project can run locally. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
6 lines
128 B
JavaScript
6 lines
128 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
output: 'static',
|
|
outDir: '../../dist/site'
|
|
});
|