Piped/vue.config.js

15 lines
366 B
JavaScript
Raw Normal View History

2021-01-01 20:05:44 +00:00
module.exports = {
pwa: {
name: 'Piped',
themeColor: '#fa4b4b',
msTileColor: '#000000',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'black',
workboxPluginMode: 'GenerateSW',
workboxOptions: {
2021-01-07 05:41:59 +00:00
navigateFallback: 'index.html',
skipWaiting: true
2021-01-01 20:05:44 +00:00
}
}
}