Files
astro-tina/astro.config.mjs
Kunthawat Greethong 1a8e7e79ae Fix:
vite.server.allowedHosts nested correctly
2026-04-28 11:42:13 +07:00

13 lines
193 B
JavaScript

import { defineConfig } from 'astro/config'
export default defineConfig({
server: {
host: '0.0.0.0',
port: 4321,
},
vite: {
server: {
allowedHosts: true,
},
},
})