mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
11 lines
No EOL
279 B
JavaScript
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',
|
|
}); |