mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 01:10:02 +02:00
10 lines
No EOL
242 B
JavaScript
10 lines
No EOL
242 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()],
|
|
}); |