-
Notifications
You must be signed in to change notification settings - Fork 1
/
astro.config.mjs
45 lines (44 loc) · 925 Bytes
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import react from "@astrojs/react";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import { defineConfig } from "astro/config";
import { visualizer } from "rollup-plugin-visualizer";
// https://astro.build/config
export default defineConfig({
site: process.env.PUBLIC_SITE_URL || "http://localhost:4321",
integrations: [
react(),
tailwind({
applyBaseStyles: false,
}),
sitemap({
i18n: {
defaultLocale: "km",
locales: {
en: "en-US",
km: "km-KH",
},
},
}),
],
i18n: {
defaultLocale: "km",
locales: ["en", "km"],
routing: {
prefixDefaultLocale: true,
redirectToDefaultLocale: false,
},
fallback: {
en: "km",
},
},
prefetch: {
prefetchAll: true,
},
vite: {
plugins: [visualizer()],
},
experimental: {
contentIntellisense: true,
},
});