add astro and configure some things

This commit is contained in:
itsMapleLeaf
2023-03-12 13:20:49 -05:00
parent fbab145f39
commit eb0409f1a2
11 changed files with 2052 additions and 752 deletions

View File

@@ -0,0 +1,7 @@
import react from "@astrojs/react"
import tailwind from "@astrojs/tailwind"
import { defineConfig } from "astro/config"
export default defineConfig({
integrations: [tailwind(), react()],
})