-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
54 lines (48 loc) · 2.06 KB
/
Copy pathnuxt.config.ts
File metadata and controls
54 lines (48 loc) · 2.06 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
47
48
49
50
51
52
53
54
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: false },
typescript: {
shim: false,
},
app: {
rootId: "vs-site-wrapper",
head: {
title: 'ValidStack - Web Development, Data Visualization & Backend Solutions',
meta: [
{ name: 'description', content: 'ValidStack offers professional web and mobile development services. We specialize in frontend, backend, API development, and data visualization, ensuring high-quality solutions tailored to your business needs.' },
{ name: 'keywords', content: 'web development, mobile development, frontend, backend, Vue, Nuxt, Strapi, Node.js, React, API, GraphQL, OSS, BSS, Big Data' },
{ name: 'robots', content: 'index, follow' },
{ property: 'og:title', content: 'ValidStack - Web Development, Data Visualization & Backend Solutions' },
{ property: 'og:description', content: 'Transform your ideas into reality with ValidStack. We build scalable and dynamic enterprise solutions.' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://validstack.pro' },
{ property: 'og:image', content: 'https://validstack.pro/preview.jpg' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:title', content: 'ValidStack - Web Development, Data Visualization & Backend Solutions' },
{ name: 'twitter:description', content: 'Providing top-tier web and mobile solutions with expertise in Vue, Nuxt, Strapi, and more.' },
{ name: 'twitter:image', content: 'https://validstack.pro/preview.jpg' }
]
}
},
css: [
"minireset.css/minireset.css",
"@/assets/style/index.css",
"@/assets/style/scrollbar.css",
],
postcss: {
plugins: {
"postcss-nested": {},
},
},
modules: [
'@nuxt/content',
'@nuxt/image',
'nuxt-gtag',
],
gtag: {
enabled: process.env.NODE_ENV === 'production',
id: 'GTM-M6CLXHQC',
// id: 'G-TE6K13CVN3',
},
compatibilityDate: "2024-10-21",
});