Files
astro-tina/astro.config.mjs
Kunthawat Greethong 4d536cb2a0 Allow all hosts
2026-04-28 11:20:19 +07:00

11 lines
170 B
JavaScript

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