1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// @ts-check import { defineConfig } from 'astro/config'; import tailwindcss from '@tailwindcss/vite'; import react from '@astrojs/react'; // https://astro.build/config export default defineConfig({ vite: { plugins: [tailwindcss()] }, integrations: [react()], devToolbar: { enabled: false, }, });