site-mariage/astro.config.mjs
Corentin Joguet bff653acd6 first commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-15 10:30:37 +02:00

17 lines
400 B
JavaScript

import { defineConfig } from 'astro/config';
import node from '@astrojs/node';
export default defineConfig({
site: process.env.PUBLIC_SITE_URL || 'http://localhost:4321',
output: 'server',
adapter: node({ mode: 'standalone' }),
server: {
host: '0.0.0.0',
port: 4321,
},
vite: {
server: {
allowedHosts: ['localhost', 'astro', 'astro-dev', '.localhost'],
},
},
});