This commit is contained in:
Никита Круглицкий 2024-11-26 18:27:06 +03:00
parent 6b8a3ca613
commit 27807edd28
2 changed files with 5 additions and 2 deletions

View File

@ -6,4 +6,5 @@ export default defineAppConfig({
email: 'support@quantumbot.kz',
appUrl: 'https://app.quantumbot.kz',
videoUrl: 'https://www.youtube.com/embed/dQw4w9WgXcQ?si=dZCL9UFbyboiQzSl',
baseUrl: import.meta.env.URL || 'https://quantumbot.kz',
})

View File

@ -12,6 +12,8 @@ import ViteComponents from 'unplugin-vue-components/vite'
const { resolve } = createResolver(import.meta.url)
const baseUrl = import.meta.env.URL || 'https://quantumbot.kz'
export default defineNuxtConfig({
devtools: { enabled: true },
@ -37,7 +39,7 @@ export default defineNuxtConfig({
},
{
property: 'og:url',
content: 'https://quantumbot.kz',
content: baseUrl,
},
{
property: 'og:type',
@ -49,7 +51,7 @@ export default defineNuxtConfig({
},
{
property: 'og:image',
content: 'https://quantumbot.kz/android-chrome-192x192.png',
content: `${baseUrl}/android-chrome-192x192.png`,
},
{
name: 'theme-color',