Init astro app

This commit is contained in:
2025-07-13 19:56:36 -03:00
parent d5ee4b91d5
commit d0299ca1a1
14 changed files with 4808 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// @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()]
});