13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
import react from '@astrojs/react';
|
|
import tailwind from '@astrojs/tailwind';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [react(), tailwind()],
|
|
vite: {
|
|
ssr: {
|
|
external: ['svgo'],
|
|
},
|
|
},
|
|
});
|