// @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', }, // Remove vite config - we only serve static files via serve package // No preview/server config needed since using static file serving });