Archived
2
0
This repository has been archived on 2025-07-16. You can view files and clone it, but cannot push or open issues or pull requests.
cc24-hub/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
}
});