-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
90 lines (85 loc) · 3.2 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
82
83
84
85
86
87
88
89
90
import { defineNuxtConfig } from 'nuxt'
export default defineNuxtConfig({
target: 'server',
ssr: true,
app: {
head: {
htmlAttrs: { lang: 'ru', dir: 'ltr' },
title: 'КрамБургер | Меню',
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
link: [
{ rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: true },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap',
},
{
rel: 'stylesheet',
href: 'https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css',
},
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
],
meta: [
{ hid: 'description', name: 'description', content: '"КрамБургер" - это то место, где готовят наивкуснейшие бургеры по индивидуально рецептуре из натурального мяса на нежных и ароматных булочках. Приходя к нам, все любители фастфуда будут уходить только с положительными эмоциями... Гарантия качества - "Br ..."' },
{
name: 'keywords',
content: 'заказать бургер в Советске/Гусеве, хотдог, бургер, доставка, Калининградская область бургерная, покушать Калининград, выберите, добавить, самые, бургеры',
},
{ hid: 'og:site_name', property: 'og:site_name', content: 'КрамБургер | Доставка бургеров по Калининградской области' },
{ hid: 'og:type', property: 'og:type', content: 'website' },
{
hid: 'og:image',
property: 'og:image',
content: 'https://yoursburgers.ru/preview.png',
},
{
hid: 'og:image:secure_url',
property: 'og:image:secure_url',
content: 'https://yoursburgers.ru/preview.png',
},
{
hid: 'og:image:alt',
property: 'og:image:alt',
content: 'КрамБургеры',
},
{ hid: 'twitter:site', name: 'twitter:site', content: '@socketsomeone' },
{
hid: 'twitter:card',
name: 'twitter:card',
content: 'summary_large_image',
},
{
hid: 'twitter:image',
name: 'twitter:image',
content: 'https://yoursburgers.ru/preview.png',
},
{
hid: 'twitter:image:alt',
name: 'twitter:image:alt',
content: 'КрамБургер',
},
],
},
},
css: [
'vue3-snackbar/dist/style.css',
'virtual:windi.css',
'virtual:windi-devtools',
'~/assets/css/main.css',
],
modules: [
'nuxt-windicss',
'@nuxtjs/strapi',
],
runtimeConfig: {
strapi: { // nuxt/strapi options available server-side
url: 'http://strapi:1337',
},
public: {
strapi: {
url: 'https://strapi.yoursburgers.ru',
},
},
},
})