-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
79 lines (78 loc) · 2.44 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
// https://nuxt.com/docs/api/configuration/nuxt-config
// Nuxt 3.10
export default defineNuxtConfig({
site: {
url: 'http://127.0.0.1:8000',
},
googleFonts: {
families: {
Roboto: true,
'Sofia+Sans': true,
}
},
app: {
head: {
link: [
{
rel: 'preconnect',
href: 'https://fonts.gstatic.com',
crossorigin: true,
},
{
rel: 'preconnect',
href: 'https://imsound.ru',
crossorigin: true,
},
],
htmlAttrs: {
lang: 'ru'
},
title: 'Интернет-магазин световой техники и музыкальной аппаратуры Imsound.ru',
meta: [
{ name: 'description', content: 'Купить профессиональное сценическое и концертное оборудование Imsound.ru'},
{ property: 'og:title', content: 'Интернет-магазин световой техники и музыкальной аппаратуры Imsound.ru' },
{ property: 'og:description', content: 'Купить профессиональное сценическое и концертное оборудование Imsound.ru' },
{ property: 'og:image', content: 'https://imsound-frontend-side.vercel.app/_nuxt/hotline.KtnH6B1A.webp' },
{ name: 'twitter:title', content: 'Интернет-магазин световой техники и музыкальной аппаратуры Imsound.ru' },
{ name: 'twitter:description', content: 'Купить профессиональное сценическое и концертное оборудование Imsound.ru' },
{ name: 'twitter:image', content: 'https://imsound-frontend-side.vercel.app/_nuxt/hotline.KtnH6B1A.webp' },
],
},
},
devtools: { enabled: true },
ssr: false,
pages: true,
modules: [
'nuxt-primevue',
'@pinia/nuxt',
'@nuxtjs/google-fonts',
"@nuxt/image",
],
primevue: true,
image: {
inject: true
},
css: [
'~/assets/global.css'
],
plugins: [
'~/plugins/baseDataUpdater.server.js',
'~/plugins/directives.js'
],
runtimeConfig: {
public: {
apiBase: '',
apiMedia: '',
brandName: process.env.NUXT_PUBLIC_BRANDNAME || '',
base_url: process.env.NUXT_PUBLIC_BASE_URL,
}
},
nitro: {
prerender: {
routes: [
'/sitemap.xml',
'robots.txt',
]
}
},
})