This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
74 lines (65 loc) · 1.55 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
import * as messages from './translations'
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
modules: [
'nuxt-icon',
'@nuxt/image-edge',
'@kevinmarrec/nuxt-pwa',
],
buildModules: [
'@nuxtjs/google-fonts',
'@nuxtjs/i18n',
],
googleFonts: {
families: {
Nunito: {
wght: [100, 300, 400, 500, 600],
},
}
},
i18n: {
locales: [
{ code: 'tr', iso: 'tr-TR' },
{ code: 'en', iso: 'en-US' },
{ code: 'ua', iso: 'ua-UA' },
{ code: 'ru', iso: 'ru-RU' }
],
defaultLocale: 'en',
vueI18n: {
fallbackLocale: 'en',
messages
}
},
image: {
domains: ['www.avrasyacity.com'],
provider: 'ipx'
},
app: {
head () {
return this.$nuxtI18nHead({ addSeoAttributes: true });
},
},
pwa: {
workbox: {
enabled: true,
templatePath: '~/worker.js'
},
manifest: {
name: 'Mekkan Menu',
short_name: 'Mekkan',
description: 'Mekkan Cafe & Restaurant',
},
meta: {
name: 'Mekkan',
author: 'Jonas Otter',
description: 'Mekkan Cafe & Restaurant',
favicon: true,
mobileApp: true,
mobileAppIOS: true,
appleStatusBarStyle: true,
theme_color: '#fff',
lang: 'en',
}
},
css: ['normalize.css/normalize.css']
})