mirror of
https://github.com/zen-browser/www
synced 2026-04-25 17:14:56 +02:00
22 lines
476 B
JavaScript
22 lines
476 B
JavaScript
import tailwind from "@astrojs/tailwind";
|
|
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
|
|
import react from "@astrojs/react";
|
|
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), react(), sitemap()],
|
|
site: "https://zen-browser.app",
|
|
i18n: {
|
|
defaultLocale: "en",
|
|
locales: ["en"],
|
|
routing: {
|
|
fallbackType: "rewrite",
|
|
prefixDefaultLocale: false,
|
|
},
|
|
},
|
|
});
|