forensic-pathways/astro-config.mjs
overcuriousity d9c79b3ddc staging
2025-07-14 23:05:46 +02:00

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
}
});