-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
84 lines (84 loc) · 1.81 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
charset: "utf-8",
viewport:
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no",
title: "Noted by 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" },*/
],
},
},
modules: [
"@nuxtjs/supabase",
"@nuxtjs/i18n",
"nuxt-icon",
[
"@pinia/nuxt",
{
autoImports: ["defineStore", "acceptHMRUpdate"],
},
],
"@pinia-plugin-persistedstate/nuxt",
"@nuxtjs/color-mode",
],
imports: {
dirs: ["stores"],
},
piniaPersistedstate: {
storage: "cookies",
},
i18n: {
locales: [
{
code: "fr-FR",
file: "fr-FR.json",
},
{
code: "en-US",
file: "en-US.json",
},
{
code: "es-ES",
file: "es-ES.json",
},
{
code: "it-IT",
file: "it-IT.json",
},
],
langDir: "locales",
defaultLocale: "en-US",
strategy: "no_prefix",
vueI18n: {
fallbackLocale: "en-US",
},
},
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
css: ["@/assets/css/main.scss"],
colorMode: {
preference: "system", // default value of $colorMode.preference
fallback: "light", // fallback value if not system preference found
classPrefix: "",
classSuffix: "",
storageKey: "nuxt-color-mode",
},
});