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