mirror of
https://github.com/withastro/astro.git
synced 2025-01-22 10:31:53 -05:00
9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
|
// @ts-check
|
||
|
import { defineConfig } from 'astro/config';
|
||
|
import tailwind from '@astrojs/tailwind';
|
||
|
|
||
|
// https://astro.build/config
|
||
|
export default defineConfig({
|
||
|
integrations: [tailwind()],
|
||
|
});
|