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