-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuxt.config.js
97 lines (97 loc) · 1.89 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
export default {
mode: 'spa',
/*
** Headers of the page
*/
head: {
title: process.env.npm_package_name || '',
meta: [
{ charset: 'utf-8' },
{
hid: 'description',
name: 'description',
content: process.env.npm_package_description || '',
mobileAppIOS: true
}
],
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico'
},
{
rel: 'stylesheet',
href:
'https://fonts.googleapis.com/css?family=Orbitron:500&display=swap&text=1234567890-'
}
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
router: {
middleware: 'i18n'
},
/*
** Global CSS
*/
css: ['~/assets/scss/app.scss'],
/*
** Plugins to load before mounting the App
*/
plugins: ['~/plugins/i18n.js'],
/*
** Nuxt.js dev-modules
*/
buildModules: [
// Doc: https://github.com/nuxt-community/eslint-module
'@nuxtjs/eslint-module'
],
/*
** Nuxt.js modules
*/
modules: [
'@nuxtjs/bulma',
'@nuxtjs/pwa',
'@nuxtjs/svg',
['@nuxtjs/google-analytics', { id: 'UA-151898084-1' }]
],
pwa: {
manifest: {
name: 'Coffee Budget'
},
meta: {
nativeUI: true,
appleStatusBarStyle: 'black-translucent'
}
},
workbox: {
runtimeCaching: [
{
urlPattern: 'https://fonts.googleapis.com/.*',
handler: 'cacheFirst',
method: 'GET',
strategyOptions: { cacheableResponse: { statuses: [0, 200] } }
},
{
urlPattern: 'https://fonts.gstatic.com/.*',
handler: 'cacheFirst',
method: 'GET',
strategyOptions: { cacheableResponse: { statuses: [0, 200] } }
}
]
},
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
sassOptions: {
fiber: false
}
}
}