2025-01-26 14:34:58 -06:00
|
|
|
// @ts-check
|
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
|
|
|
|
import react from '@astrojs/react';
|
|
|
|
|
|
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
|
2025-01-26 17:25:01 -06:00
|
|
|
import node from '@astrojs/node';
|
|
|
|
|
2025-01-26 14:34:58 -06:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2025-01-26 17:25:01 -06:00
|
|
|
integrations: [react(), tailwind()],
|
|
|
|
|
|
|
|
adapter: node({
|
|
|
|
mode: 'standalone'
|
|
|
|
})
|
2025-01-26 14:34:58 -06:00
|
|
|
});
|