Files
28k8-moonweb-org/astro.config.mjs
T
2026-09-10 21:45:02 +02:00

10 lines
279 B
JavaScript

import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
export default defineConfig({
site: 'https://28k8.moonweb.org',
trailingSlash: 'always',
integrations: [react()],
server: { host: '0.0.0.0' },
vite: { server: { allowedHosts: true } }
});