import { defineConfig } from 'astro/config' import { fileURLToPath } from 'url' import path from 'path' const __dirname = path.dirname(fileURLToPath(import.meta.url)) export default defineConfig({ site: 'https://example.com', output: 'static', build: { assets: '_assets', }, server: { host: '0.0.0.0', port: 4321, }, })