lavender/web/astro.config.mjs

14 lines
229 B
JavaScript
Raw Normal View History

2024-11-28 00:16:07 +00:00
// @ts-check
2024-12-07 19:44:50 +00:00
import {defineConfig} from 'astro/config';
2024-11-28 00:16:07 +00:00
import tailwind from '@astrojs/tailwind';
2024-11-28 00:16:07 +00:00
// https://astro.build/config
export default defineConfig({
2024-12-07 19:44:50 +00:00
integrations: [
tailwind({
nesting: true,
})
]
});