-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathastro.config.mjs
72 lines (71 loc) · 1.46 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { defineConfig } from "astro/config";
import { remarkModifiedTime } from "./src/utils/remark-modified-time.mjs";
import pagefind from "astro-pagefind";
import icon from "astro-icon";
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import rehypeExternalLinks from "rehype-external-links";
import partytown from "@astrojs/partytown";
import sitemap from "@astrojs/sitemap";
export default defineConfig({
site: "https://verse-i18n.vercel.app",
trailingSlash: "always",
prefetch: true,
i18n: {
defaultLocale: "en",
locales: [
"zh",
"en",
],
routing: {
prefixDefaultLocale: true,
redirectToDefaultLocale: false,
},
},
image: {
remotePatterns: [
{
protocol: "https",
hostname: "**.unsplash.com",
},
],
},
markdown: {
remarkPlugins: [remarkModifiedTime],
rehypePlugins: [
[
rehypeExternalLinks,
{
content: { type: "text", value: " ↗" },
},
],
],
},
integrations: [
sitemap({
i18n: {
defaultLocale: 'en',
locales: {
en: 'en-US',
zh: 'zh-CN',
},
},
}),
mdx(),
pagefind(),
tailwind(),
icon({
include: {
tabler: ["*"],
mdi: ["*"],
"material-symbols": ["*"],
flagpack: ["*"],
"flat-color-icons": ["*"],
},
}), partytown({
config: {
forward: ["dataLayer.push"],
},
})
],
});