-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
81 lines (73 loc) · 2.07 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
import { defineNuxtConfig } from "nuxt/config";
export default defineNuxtConfig({
compatibilityDate: "2024-10-08",
app: {
head: {
charset: "utf-8",
viewport: "width=device-width, initial-scale=1",
script: [
{ src: "/vendor/lightbox/lightbox-plus-jquery.js", defer: true },
],
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "" },
{ name: "format-detection", content: "telephone=no" },
],
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
},
},
devtools: { enabled: true },
nitro: {
plugins: ["@/server/index.ts"],
},
modules: [
"gc-shared-resources",
"nuxt-auth-utils",
"@nuxtjs/i18n",
"@nuxt/test-utils/module",
"nuxt-windicss",
],
css: ["public/vendor/lightbox/lightbox.min.css"],
i18n: {
locales: [
{ code: "en", name: "English", language: "en-US", file: "en.json" },
{ code: "es", name: "Español", language: "es-ES", file: "es.json" },
{ code: "pt", name: "Português", language: "pt-PT", file: "pt.json" },
{ code: "nl", name: "Nederlands", language: "nl-NL", file: "nl.json" },
],
defaultLocale: "en",
detectBrowserLanguage: {
useCookie: true,
cookieKey: "i18n_redirected",
alwaysRedirect: true,
redirectOn: "all",
},
langDir: "lang/",
strategy: "no_prefix",
skipSettingLocaleOnNavigate: true, // persists locale when route changes
},
runtimeConfig: {
configDatabase: "guardianconnector",
database: "",
dbHost: "",
dbUser: "",
dbPassword: "",
dbPort: "5432",
dbSsl: true,
dbTable: "",
isSqlite: false,
sqliteDbPath: "",
port: "8080",
public: {
allowedFileExtensions: {
image: ["jpg", "jpeg", "png", "webp"],
audio: ["mp3", "ogg", "wav"],
video: ["mov", "mp4", "avi", "mkv"],
},
appApiKey: "",
authStrategy: "none",
baseUrl: "http://localhost:8080",
},
},
});