Files
azionelab-v2/frontend/astro.config.mjs
T
2026-06-24 08:59:35 +02:00

15 lines
224 B
JavaScript

import { defineConfig } from "astro/config";
export default defineConfig({
output: "static",
server: {
host: true,
port: 4321,
},
vite: {
server: {
allowedHosts: ["azionelab.org"],
},
},
});