forked from sentimony/sentimony-nuxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
executable file
·142 lines (139 loc) · 4.11 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
module.exports = {
head: {
titleTemplate: '%s | Sentimony Records',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
],
link: [
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Montserrat' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Julius+Sans+One' },
{ rel: 'shortcut icon', href: 'https://content.sentimony.com/assets/img/favicons/sentimony/favicon-32.png' },
{ rel: 'apple-touch-icon', href: 'https://content.sentimony.com/assets/img/favicons/sentimony/favicon-144.png' }
]
},
loading: {
color: 'rgba(255,255,255,0.5)',
height: '5px'
},
modules: [
['@nuxtjs/pwa', { icon: false }]
],
workbox: {
runtimeCaching: [{
urlPattern: 'https://content.sentimony.com/.*',
handler: 'cacheFirst',
method: 'GET'
}],
importScripts: [
'custom-sw.js'
],
},
manifest: {
name: 'Sentimony App',
lang: 'en'
},
plugins: [
{ src: '~plugins/google-analytics.js', ssr: false },
{ src: '~/plugins/swiper.js', ssr: false },
{ src: '~/plugins/vue-tabs.js', ssr: false },
{ src: '~/plugins/v-img.js', ssr: false },
{ src: '~/plugins/vue-touch-ripple.js', ssr: false }
],
css: [
'normalize.css/normalize.css',
'swiper/dist/css/swiper.css',
'vue-touch-ripple/component.css'
// 'vue-nav-tabs/dist/vue-tabs.min.css'
],
build: {
vendor: ['axios']
},
generate: {
routes: [
'/release/va-fantazma',
'/release/va-emptinesses',
'/release/sphingida-origin',
'/release/va-true-story',
'/release/spectrum-vision-lost-space-device',
'/release/irukanji-z-lisu',
'/release/va-ocean-scenes-higher-titans',
'/release/senzar-before-the-morning-sun',
'/release/va-grower',
'/release/va-time-loop-beyond-borders',
'/release/unusual-cosmic-process-weightlessness',
'/release/va-tempo-syndicate',
'/release/va-dancing-mavka',
'/release/va-absence-of-gravity',
'/release/va-special-places',
'/release/hypnotriod-seven-heavenly-edges',
'/release/specialmind-the-missing-particle',
'/release/tentura-aurora',
'/release/cifroteca-roof-raiser-wild-storm',
'/release/psyfactor-retro-scientific',
'/release/va-gamayun-tale',
'/release/tentura-beyond-illusion',
'/release/ufomatka-the-ep',
'/release/va-the-ten',
'/release/zymosis-insight',
'/release/overdream-beautiful-thinking',
'/release/ufomatka-altering-the-synaptic-controllers',
'/release/omnisound-destiny',
'/release/zymosis-eve',
'/artist/alexander-daf',
'/artist/already-maged',
'/artist/astropilot',
'/artist/calamus',
'/artist/capsula',
'/artist/chronos',
'/artist/cifroteca',
'/artist/crystal-vibe',
'/artist/dagas',
'/artist/daoine-sidhe',
'/artist/eguana',
'/artist/flooting-grooves',
'/artist/harax',
'/artist/heinali',
'/artist/hypnotriod',
'/artist/irukanji',
'/artist/katya-chilly',
'/artist/magmadivers',
'/artist/neirula',
'/artist/overdream',
'/artist/psyfactor',
'/artist/roof-raiser',
'/artist/saikozaurus',
'/artist/senzar',
'/artist/shiva3',
'/artist/shivattva',
'/artist/shizolizer-gin',
'/artist/sky-technology',
'/artist/solcast',
'/artist/specialmind',
'/artist/spectrum-vision',
'/artist/sphingida',
'/artist/sygnals',
'/artist/tentura',
'/artist/tookytooky',
'/artist/ufomatka',
'/artist/unstable-elements',
'/artist/unusual-cosmic-process',
'/artist/vonoom',
'/artist/zymosis',
'/artist/psydewise',
'/artist/erot',
'/event/shift-space',
'/event/alt-space',
'/event/water-marks',
'/event/home-space',
'/event/five-years',
'/friend/another-dimension',
'/friend/clocktail',
'/friend/moon-koradji',
'/friend/parvati',
'/friend/space-baby',
'/friend/treetrolla',
'/friend/zenon'
]
}
}