-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
67 lines (67 loc) · 1.88 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
// @ts-nocheck
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
srcDir: 'src/',
modules: ['@nuxtjs/eslint-module'],
css: [
'primevue/resources/primevue.min.css',
'primeicons/primeicons.css',
'primeflex/primeflex.css',
'@/assets/theme.css',
'@/assets/styles.css'
],
build: {
transpile: ['primevue']
},
runtimeConfig: {
jwtAccessSecret: process.env.JWT_ACCESS_SECRET,
jwtRefreshSecret: process.env.JWT_REFRESH_SECRET,
cloudinaryCloudName: process.env.CLOUDINARY_CLOUD_NAME,
cloudinaryApiKey: process.env.CLOUDINARY_API_KEY,
cloudinaryApiSecret: process.env.CLOUDINARY_API_SECRET,
smtpHost: process.env.SMTP_HOST,
smtpPort: process.env.SMTP_PORT,
smtpBotUser: process.env.SMTP_BOT_USER,
smtpInfoUser: process.env.SMTP_INFO_USER,
smtpUserName: process.env.SMTP_USER_NAME,
smtpBotPassword: process.env.SMTP_BOT_PASSWORD,
smtpInfoPassword: process.env.SMTP_INFO_PASSWORD
},
app: {
head: {
link: [
{
rel: 'apple-touch-icon',
sizes: '180x180',
href: '/favicon/apple-touch-icon.png'
},
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: '/favicon/favicon-32x32.png'
},
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: '/favicon/favicon-16x16.png'
},
{ rel: 'manifest', href: '/favicon/site.webmanifest' },
{
rel: 'mask-icon',
href: '/favicon/safari-pinned-tab.svg',
color: '#a855f7'
}
],
meta: [
{
name: 'format-detection',
content: 'telephone=no, email=no, address=no, date=no'
},
{ name: 'msapplication-TileColor', content: '#a855f7' },
{ name: 'theme-color', content: '#ffffff' }
]
}
}
})