mirror of
https://github.com/zen-browser/www.git
synced 2025-07-07 17:05:32 +02:00
13 lines
344 B
JavaScript
13 lines
344 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config'
|
|
import tailwind from '@astrojs/tailwind'
|
|
|
|
import preact from '@astrojs/preact'
|
|
|
|
import sitemap from '@astrojs/sitemap'
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), preact({ compat: true }), sitemap({})],
|
|
site: 'https://zen-browser.app',
|
|
})
|