13 lines
275 B
JavaScript
13 lines
275 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({
|
|
output: 'server',
|
|
integrations: [react(), tailwind({ nesting: true })],
|
|
})
|