www/astro.config.mjs
2024-12-24 21:13:35 +02:00

11 lines
No EOL
279 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import react from '@astrojs/react';
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), react()],
site: 'https://zen-browser.app',
});