-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
50 lines (42 loc) · 841 Bytes
/
nuxt.config.ts
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
export default defineNuxtConfig({
runtimeConfig: {
public: {},
},
modules: [
"@nuxtjs/tailwindcss",
"@nuxtjs/color-mode",
"@nuxt/content",
"@nuxtjs/web-vitals",
"@nuxtjs/robots",
],
extends: "@nuxt-themes/typography",
colorMode: {
preference: "dark",
classSuffix: "",
},
content: {
markdown: {
remarkPlugins: ["remark-reading-time"],
},
highlight: {
theme: {
default: "github-light",
dark: "github-dark",
},
},
},
tailwindcss: {
cssPath: "~/assets/css/tailwind.css",
},
webVitals: {
provider: "log",
debug: true, // debug enable metrics reporting on dev environments
disabled: false,
},
nitro: {
prerender: {
routes: ["/sitemap.xml", "/rss.xml"],
},
},
compatibilityDate: "2024-12-31",
});