9 lines
No EOL
180 B
JavaScript
9 lines
No EOL
180 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
|
|
export default defineConfig({
|
|
// ...
|
|
integrations: [tailwind()],
|
|
}); |