mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 14:03:52 +00:00
11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import react from '@astrojs/react';
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
export default defineConfig({
|
|
output: 'static',
|
|
integrations: [
|
|
react(),
|
|
tailwind()
|
|
]
|
|
});
|