12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
// @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({ nesting: true })],
|
|
})
|