-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
46 lines (45 loc) · 1.15 KB
/
Copy pathnuxt.config.ts
File metadata and controls
46 lines (45 loc) · 1.15 KB
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
export default defineNuxtConfig({
devtools: { enabled: false },
ssr: false,
target: "static",
modules: [
"@nuxtjs/tailwindcss",
"@vueuse/nuxt",
"@nuxtjs/google-fonts",
"@pinia-plugin-persistedstate/nuxt",
"@pinia/nuxt",
],
gsap: {
extraPlugins: {
scrollTo: true,
scrollTrigger: true,
pixi: true,
},
},
googleFonts: {
families: {
Roboto: true,
},
},
app: {
head: {
htmlAttrs: {
lang: "en",
},
title: "AItaar AI",
charset: "utf-8",
meta: [
{ name: "description", content: "AItaar" },
{ name: "author", content: "eitaar" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ property: "og:title", content: "AItaar | A super intelegent AI" },
{ property: "og:type", content: "website" },
{ property: "og:url", content: "https://eitaar.dev" },
{ property: "og:image", content: "https://eitaar.dev/logo.png" },
{ property: "og:site_name", content: "AItaar" },
{ property: "og:locale", content: "en_US" },
],
},
},
compatibilityDate: "2024-12-15",
});