23 lines
425 B
JavaScript
23 lines
425 B
JavaScript
// astro.config.mjs - Static deployment configuration
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
// Static site generation - no adapter needed
|
|
output: 'static',
|
|
|
|
// Build configuration
|
|
build: {
|
|
assets: '_astro'
|
|
},
|
|
|
|
// Development server
|
|
server: {
|
|
port: 4321,
|
|
host: true
|
|
},
|
|
|
|
// Ensure all pages are pre-rendered
|
|
experimental: {
|
|
prerender: true
|
|
}
|
|
}); |