mirror of
https://github.com/rjNemo/vf-site
synced 2026-06-06 09:16:39 +00:00
11 lines
No EOL
211 B
JavaScript
11 lines
No EOL
211 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
vite: {
|
|
plugins: [tailwindcss()]
|
|
}
|
|
}); |