-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
81 lines (74 loc) · 2.75 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: ['@nuxt/ui', '@pinia/nuxt', '@nuxtjs/color-mode', '@nuxt/fonts', '@nuxtjs/seo', 'nuxt-link-checker', 'nuxt-lucide-icons'],
devtools: { enabled: true },
ssr: true,
experimental: {
payloadExtraction: false
},
nitro: {
devProxy: {
'/ws': {
target: 'ws://localhost:3000',
ws: true
}
}
},
runtimeConfig: {
public: {
googleClientId: process.env.GOOGLE_CLIENT_ID,
googleRedirectUri: process.env.GOOGLE_REDIRECT_URI
}
},
app: {
head: {
htmlAttrs: {
lang: 'en'
},
title: 'Repo-Booster - SEO Analytics Platform',
titleTemplate: '%s | Repo-Booster',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'format-detection', content: 'telephone=no' },
{ name: 'robots', content: 'index, follow' },
{
name: 'description',
content: 'Comprehensive SEO analytics and optimization platform. Track rankings, analyze competitors, and improve your search visibility.'
},
{
name: 'keywords',
content: 'SEO, analytics, rank tracking, competitor analysis, backlinks, keyword research, site audit'
},
// Open Graph
{ property: 'og:type', content: 'website' },
{ property: 'og:site_name', content: 'Repo-Booster' },
{ property: 'og:url', content: 'https://app.repo-booster.com' },
{ property: 'og:title', content: 'Repo-Booster - SEO Analytics Platform' },
{
property: 'og:description',
content: 'Comprehensive SEO analytics and optimization platform. Track rankings, analyze competitors, and improve your search visibility.'
},
{ property: 'og:image', content: 'https://app.repo-booster.com/og-image.jpg' },
// Twitter
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:site', content: '@RepoBooster' },
{ name: 'twitter:title', content: 'Repo-Booster - SEO Analytics Platform' },
{
name: 'twitter:description',
content: 'Comprehensive SEO analytics and optimization platform. Track rankings, analyze competitors, and improve your search visibility.'
},
{ name: 'twitter:image', content: 'https://app.repo-booster.com/twitter-card.jpg' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'canonical', href: 'https://app.repo-booster.com' },
{ rel: 'stylesheet', href: 'https://rsms.me/inter/inter.css' }
]
}
},
typescript: {
strict: false
},
compatibilityDate: '2025-01-07'
})