12 lines
251 B
JavaScript
12 lines
251 B
JavaScript
// @ts-check
|
|
// @ts-check
|
|
import { defineConfig } from "astro/config"
|
|
|
|
import react from "@astrojs/react"
|
|
|
|
import tailwind from "@astrojs/tailwind"
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [react(), tailwind()],
|
|
})
|