// @ts-check import { defineConfig } from 'astro/config'; import tailwindcss from '@tailwindcss/vite'; // https://astro.build/config export default defineConfig({ output: 'static', // Changed from 'hybrid' (deprecated) build: { inlineStylesheets: 'always', }, vite: { plugins: [tailwindcss()], preview: { host: true, // Allow all hosts (fix Easypanel access) port: 80, strictPort: false, }, server: { host: true, // Allow all hosts port: 80, strictPort: false, }, }, });