-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
80 lines (75 loc) · 1.48 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'format-detection', content: 'telephone=no' },
],
},
},
modules: [
'nuxt-api-party',
'@nuxtjs/html-validator',
'@nuxtjs/i18n',
'@vueuse/nuxt',
'@nuxtjs/tailwindcss',
'@nuxt/image-edge',
'nuxt-swiper',
'nuxt-simple-sitemap',
'@nuxtjs/robots',
],
apiParty: {
endpoints: {
cms: {
url: process.env.NUXT_API_PARTY_ENDPOINTS_CMS_URL!,
},
},
allowClient: true,
},
css: [
'~/assets/css/fonts/typography.css',
'~/assets/css/global.css',
// '~/assets/css/typography.css',
// '~/assets/css/layout.css',
],
i18n: {
locales: [
{
code: 'en',
name: 'English',
iso: 'en',
dir: 'ltr',
file: 'en.json',
},
{
code: 'ar',
name: 'العربية',
iso: 'ar',
dir: 'rtl',
file: 'ar.json',
},
],
lazy: true,
langDir: 'lang',
defaultLocale: 'en',
baseUrl: 'http://localhost:3000/',
debug: false,
},
runtimeConfig: {
smtpEmail: '',
smtpPass: '',
sendgridApiKey: '',
mailTo: '',
nodeEnv: '',
public: {
nodeEnv: '',
sendgridApiKey: '',
siteUrl: '',
},
},
typescript: {
shim: false,
},
})