-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
176 lines (161 loc) · 4.83 KB
/
nuxt.config.js
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
export default {
// Target: https://go.nuxtjs.dev/config-target
target: "static",
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
titleTemplate: "%s - " + "ArtCraft Design",
title: "ArtCraft Design" || "",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "" }
],
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" }]
},
loading: {
color: "white",
height: "5px"
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: [
"~/assets/styles/global.css",
"vue-slick-carousel/dist/vue-slick-carousel.css",
"vue-slick-carousel/dist/vue-slick-carousel-theme.css"
],
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
{
src: "~/plugins/scroll-lock.js",
mode: "client"
},
"~/plugins/vue-slick-carousel.js",
"~/plugins/vue-stripe-menu.js"
],
image: {
provider: "prismic",
prismic: {}
},
// Auto import components: https://go.nuxtjs.dev/config-components
components: true,
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
// https://go.nuxtjs.dev/tailwindcss
"@nuxtjs/tailwindcss",
"@nuxtjs/prismic",
"@nuxtjs/composition-api/module",
"@nuxt/image",
"@nuxtjs/device"
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
// https://go.nuxtjs.dev/axios
"@nuxtjs/axios",
// https://go.nuxtjs.dev/pwa
"@nuxtjs/pwa",
"nuxt-i18n"
],
i18n: {
locales: ["en", "ru", "uz"],
defaultLocale: "ru",
detectBrowserLanguage: false,
vueI18n: {
fallbackLocale: "uz",
messages: {
en: {
navbar: {
projects: "Projects",
clients: "Clients",
services: "Services",
about: "About Us",
contact: "Contacts"
},
Homepage: "Homepage",
"Social links": "Social networks",
"Contact us": "Contact us",
Send: "Send",
"First name": "First name",
"E-mail": "E-mail",
"Phone number": "Your phone number",
"Your message": "Your message here",
Year: "Year",
Website: "Website",
"Our Services": "Our Services",
"Work examples": "Work examples",
Copyright: "All rights reserved",
"Other projects": "other projects",
"Read more": "Read more"
},
ru: {
navbar: {
projects: "Проекты",
clients: "Клиенты",
services: "Услуги",
about: "О Нас",
contact: "Контакты"
},
Homepage: "Главная страница",
"Social links": "Социальные сети",
"Contact us": "Напишите нам",
Send: "Отправить",
"First name": "Ваше Имя",
"E-mail": "E-mail",
"Phone number": "Ваш номер телефона",
"Your message": "Ваше сообщение",
Year: "Год",
Website: "Веб-сайт",
"Our Services": "Наши услуги",
"Work examples": "Примеры работ",
Copyright: "Все права защищены",
"Other projects": "другие работы",
"Read more": "Подробнее"
},
uz: {
navbar: {
projects: "Loyihalar",
clients: "Mijozlar",
services: "Xizmatlar",
about: "Biz haqimizda",
contact: "Aloqa"
},
Homepage: "Bosh sahifa",
"Social links": "Biz ijtimoiy tarmoqlardamiz",
"Contact us": "Biz bilan bogʻlaning",
Send: "Joʻnatish",
"First name": "Ismingiz",
"E-mail": "E-mail",
"Phone number": "Telefon raqamingiz",
"Your message": "Xabarni kiriting",
Year: "Yil",
Website: "Veb-sayt",
"Our Services": "Bizning xizmatlar",
"Work examples": "Ishdan namunalar",
Copyright: "Barcha huquqlar himoyalangan",
"Other projects": "boshqa loyihalar",
"Read more": "Batafsil"
}
}
}
},
router: {
middleware: ["base"]
},
prismic: {
endpoint: "https://artcraft-design2.cdn.prismic.io/api/v2",
modern: true
/* see configuration for more */
},
// Axios module configuration: https://go.nuxtjs.dev/config-axios
axios: {},
// PWA module configuration: https://go.nuxtjs.dev/pwa
pwa: {
manifest: {
lang: "en"
}
},
generate: {
// choose to suit your project
interval: 2000
},
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {}
};