-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.js
125 lines (111 loc) · 2.78 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
import i18nConfiguration from './locales/i18n'
import app from './app.config'
export default {
// Target: https://go.nuxtjs.dev/config-target
target: 'static',
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
titleTemplate: (titleChunk) => {
return titleChunk ? `${titleChunk} · FinWa` : 'FinWa'
},
title: undefined,
},
// Global CSS: https://go.nuxtjs.dev/config-css
css: ['~/assets/styles.scss'],
// Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins
plugins: [
{ src: '~/plugins/chartjs.client.ts' },
{ src: '~/plugins/persistedState.client.ts' },
{ src: '~/plugins/pwaUpdate.client.ts' },
{ src: '~/plugins/storageManager.ts' },
],
// Auto import components: https://go.nuxtjs.dev/config-components
components: [
'~/components/atoms/',
'~/components/molecules/',
'~/components/organisms/',
],
// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
// https://go.nuxtjs.dev/typescript
'@nuxt/typescript-build',
// https://go.nuxtjs.dev/stylelint
'@nuxtjs/stylelint-module',
// https://go.nuxtjs.dev/vuetify
'@nuxtjs/vuetify',
'@nuxtjs/composition-api/module',
],
// Modules: https://go.nuxtjs.dev/config-modules
modules: [
// https://i18n.nuxtjs.org/
'@nuxtjs/i18n',
// https://go.nuxtjs.dev/pwa
'@nuxtjs/pwa',
'@nuxtjs/sitemap',
// https://color-mode.nuxtjs.org/
'@nuxtjs/color-mode',
],
colorMode: {
preference: 'system',
fallback: 'light',
},
// PWA module configuration: https://go.nuxtjs.dev/pwa
pwa: {
manifest: {
name: app.name,
short_name: app.name,
theme_color: app.theme.primary,
},
meta: {
nativeUI: true,
ogImage: `${app.host}/og-image.png`,
ogHost: app.host,
twitterCard: 'summary_large_image',
twitterCreator: '@DerYeger',
},
icon: {},
},
// Vuetify module configuration: https://go.nuxtjs.dev/config-vuetify
vuetify: {
customVariables: ['~/assets/variables.scss'],
theme: {
options: {
customProperties: true,
},
dark: true,
themes: {
dark: app.theme.dark,
light: app.theme.light,
},
},
},
loading: {
color: app.theme.primary,
},
i18n: {
baseUrl: app.host,
defaultLocale: 'en',
noPrefixDefaultLocale: false,
locales: [
{
code: 'en',
name: 'English',
iso: 'en-US',
},
{
code: 'de',
name: 'Deutsch',
iso: 'de-DE',
},
],
vueI18n: i18nConfiguration,
},
sitemap: {
gzip: true,
hostname: app.host,
i18n: true,
trailingSlash: true,
},
// Build Configuration: https://go.nuxtjs.dev/config-build
build: {},
}