-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
55 lines (51 loc) · 2.07 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
devtools: {
enabled: false
},
components: [
{
pathPrefix: true,
extensions: ['.vue'],
},
],
modules: [
'@nuxtjs/i18n',
"@vuestic/nuxt"
],
runtimeConfig: {
public: {
tawkto: '', // can be overridden by NUXT_PUBLIC_TAWKTO environment variable
apiTenantDomain: '', // can be overridden by NUXT_PUBLIC_API_TENANT_DOMAIN environment variable
apiTenantsToken: '', // can be overridden by NUXT_PUBLIC_API_TENANTS_TOKEN environment variable
apiTenants: '', // can be overridden by NUXT_PUBLIC_API_TENANTS environment variable
apiBase: '', // can be overridden by NUXT_PUBLIC_API_BASE environment variable
nameApplication: '', // can be overridden by NUXT_PUBLIC_NAME_APPLICATION environment variable
googleRecaptcha: '', // can be overridden by NUXT_PUBLIC_GOOGLE_RECAPTCHA environment variable
discordLink: '', // can be overridden by NUXT_PUBLIC_DISCORD_LINK environment variable
emailSupport: '', // can be overridden by NUXT_PUBLIC_EMAIL_SUPPORT environment variable
nameCompany: '', // can be overridden by NUXT_PUBLIC_NAME_COMPANY environment variable
}
},
i18n: {
vueI18n: './i18n.config.ts' // if you are using custom path, default
},
vuestic: {
config: {
// Config here
},
css: true
},
head: {
link: [
//NOTE - List Icons https://fonts.google.com/icons?selected=Material+Icons
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/icon?family=Material+Icons' },
{ rel: 'stylesheet', href: "https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;1,700&display=swap" },
{ rel: 'stylesheet', href: "https://fonts.googleapis.com/icon?family=Material+Icons" }
]
},
css: [
'~/node_modules/material-design-icons-iconfont/dist/material-design-icons.css',
],
})