fix: Allow all hosts for Vite preview server

Required for Easypanel hosting
This commit is contained in:
Kunthawat
2026-03-10 14:18:45 +07:00
parent f04218b350
commit 5eb021e5d0

View File

@@ -5,7 +5,12 @@ import tailwindcss from '@tailwindcss/vite';
// https://astro.build/config
export default defineConfig({
output: 'static',
vite: {
server: {
host: '0.0.0.0',
allowedHosts: true,
},
plugins: [tailwindcss()]
}
},
});