-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
77 lines (77 loc) · 1.62 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 {
app: {
head: {
htmlAttrs: {
lang: "en",
},
charset: "utf-8",
viewport:
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no",
title: "Kaana",
meta: [
{
name: "description",
content:
"We believe in the potential of people when they can come together.",
},
],
script: [
/*{ src: "//assets.kaana.io/js/jquery-3.5.1.min.js" },*/
],
noscript: [{ children: "JavaScript is required" }],
link: [
/*{ rel: "stylesheet", href: "//assets.kaana.io/css/basic.css" },*/
],
},
},
nitro: {
preset: "vercel-edge",
},
css: ["~/assets/css/main.css"],
modules: ["@nuxtjs/i18n", "nuxt-icon", "@nuxtjs/color-mode"],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
i18n: {
strategy: "no_prefix",
locales: [
{
name: "English",
code: "en-US",
file: "en-US.json",
flag: "🇺🇸",
},
{
name: "Español",
code: "es-ES",
file: "es-ES.json",
flag: "🇪🇸",
},
{
name: "Français",
code: "fr-FR",
file: "fr-FR.json",
flag: "🇫🇷",
},
{
name: "Italiano",
code: "it-IT",
file: "it-IT.json",
flag: "🇮🇹",
},
],
langDir: "locales/",
defaultLocale: "en-US",
detectBrowserLanguage: {
useCookie: true,
cookieCrossOrigin: true,
},
},
colorMode: {
preference: "light",
dataValue: "theme",
},
};