mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
12 lines
312 B
JavaScript
12 lines
312 B
JavaScript
import { fileURLToPath } from 'node:url';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
integrations: [
|
|
tailwind({
|
|
configFile: fileURLToPath(new URL('./tailwind.config.js', import.meta.url)),
|
|
nesting: true
|
|
}),
|
|
]
|
|
});
|