-
Notifications
You must be signed in to change notification settings - Fork 2
/
nuxt.config.ts
77 lines (71 loc) · 1.48 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
export default defineNuxtConfig({
compatibilityDate: '2024-08-26',
nitro: {
prerender: {
// Without this limit, prerendering fails on GitHub Actions for random pages
concurrency: 1,
}
},
runtimeConfig: {
baseUrl: process.env.BASE_URL || 'http://localhost:3000',
},
modules: [
'@nuxt/content',
'@nuxt/eslint',
'@nuxt/image',
'@nuxtjs/i18n',
'@nuxtjs/tailwindcss',
],
dir: {
public: 'content/static',
},
content: {
ignores: [
'^\\/content\\/static\\/',
'^\\/content\\/translations\\/',
],
markdown: {
anchorLinks: false
},
},
i18n: {
baseUrl: process.env.BASE_URL || 'http://localhost:3000',
locales: [
{
code: 'de',
language: 'de-DE',
name: 'Deutsch',
file: 'de.js',
},
{
code: 'en',
language: 'en-US',
name: 'English',
file: 'en.js',
},
// Disabled locales without any translated content
//{
// code: 'fr',
// language: 'fr-FR',
// name: 'Français',
// file: 'fr.js',
//},
//{
// code: 'es',
// language: 'es-ES',
// name: 'Español',
// file: 'es.js',
//},
//{
// code: 'ru',
// language: 'ru-RU',
// name: 'Русский',
// file: 'ru.js',
//},
],
defaultLocale: 'de',
strategy: 'prefix_except_default',
langDir: 'content/translations/',
lazy: true,
},
})