// @ts-check import { defineConfig } from 'astro/config'; import tailwindcss from '@tailwindcss/vite'; // https://astro.build/config export default defineConfig({ vite: { plugins: [tailwindcss()], server: { allowedHosts: true // Allow all hosts for development }, preview: { allowedHosts: true // Allow all hosts for production preview } } });