-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
108 lines (102 loc) · 1.88 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
const i18n = {
locales: [
{
code: "en",
language: "en",
},
{
code: "nl",
language: "nl",
},
],
defaultLocale: "en",
};
export default defineNuxtConfig({
build: {
transpile: ["@ekwoka/spotify-api"],
},
app: {
pageTransition: { name: "page", mode: "out-in" },
},
nitro: {
prerender: {
crawlLinks: true,
routes: ["/", "/snippets", "/projects", "/sitemap.xml", "/robots.txt"],
},
},
modules: [
"@nuxthub/core",
"@nuxt/eslint",
"@nuxtjs/tailwindcss",
"radix-vue/nuxt",
"@nuxt/icon",
"@nuxtjs/google-fonts",
"@nuxt/content",
"@nuxtjs/i18n",
"@vueuse/nuxt",
"@nuxt/image",
"@nuxtjs/robots",
"@nuxtjs/sitemap",
],
components: [
{
path: "~/components/ui",
prefix: "Ui",
},
{
path: "~/components",
},
],
devtools: { enabled: true },
runtimeConfig: {
spotifyRefreshToken: "",
spotifyClientId: "",
spotifyClientSecret: "",
},
future: { compatibilityVersion: 4 },
compatibilityDate: "2024-07-30",
hub: {
kv: true,
},
eslint: {
config: {},
},
i18n: {
locales: i18n.locales.map((locale) => ({
...locale,
file: `${locale.code}.json`,
})),
defaultLocale: i18n.defaultLocale,
strategy: "prefix_except_default",
lazy: true,
langDir: "lang",
baseUrl: "https://elmarvr.com",
},
radix: {
prefix: "Radix",
},
googleFonts: {
families: {
Inconsolata: true,
},
},
content: {
locales: i18n.locales.map(({ code }) => code),
defaultLocale: i18n.defaultLocale,
ignores: ["/code/"],
highlight: {
theme: "one-dark-pro",
},
},
icon: {
serverBundle: "local",
},
site: {
url: "https://elmarvr.com",
name: "Elmar's personal website",
},
sitemap: {
strictNuxtContentPaths: true,
autoLastmod: true,
},
});