// @ts-check import { defineConfig } from 'astro/config'; import tailwindcss from '@tailwindcss/vite'; export default defineConfig({ vite: { plugins: [tailwindcss()] }, // Allow all hosts - required for Easypanel deployment server: { host: '0.0.0.0', allowedHosts: true }, preview: { host: '0.0.0.0', allowedHosts: true } });