chat_f / astro.config.mjs
Levin-Aleksey's picture
start
7843328
raw
history blame contribute delete
227 Bytes
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
integrations: [react(), tailwind()],
});