-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
48 lines (46 loc) · 1.52 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
htmlAttrs: {
lang: "en"
},
charset: "utf-8",
viewport: "width=device-width,initial-scale=1",
title: "Gravitalia | Support",
meta: [
{ name: "description", content: "Helping you is our priority, Gravitalia" },
{ name: "og:description", content: "Helping you is our priority, Gravitalia" },
{ property: "og:type", content: "website" },
{ property: "og:title", content: "Gravitalia" },
{ property: "og:image", content: "/favicon.webp" },
{ name: "theme-color", content: "#332b43" },
{ name: "robots", content: "index, follow" }
],
link: [
{ rel: "icon", type: "image/webp", href: "/favicon.webp" }
],
bodyAttrs: {
//class: "dark:bg-zinc-900 dark:text-white"
}
}
},
ssr: true,
modules: [
"@nuxtjs/tailwindcss",
"@nuxt/content",
/*["@nuxtjs/color-mode", {
preference: 'system',
fallback: 'light',
hid: 'color-script',
globalName: '__NUXT_COLOR_MODE__',
componentName: 'ColorScheme',
classPrefix: '',
classSuffix: '',
storageKey: 'mode'
}]*/
],
experimental: {
noScripts: false
}
});