Files
astro-tina/astro.config.mjs
Kunthawat Greethong 6d9a10f808 Add allowedHosts for
Easypanel
2026-04-28 11:18:54 +07:00

11 lines
215 B
JavaScript

import { defineConfig } from 'astro/config'
export default defineConfig({
server: {
host: '0.0.0.0',
port: 4321,
},
vite: {
allowedHosts: ['moreminimore-astro-tina.extyye.easypanel.host'],
},
})