mirror of
https://github.com/mokuappio/serverless-invoices.git
synced 2025-10-27 07:51:08 -04:00
19 lines
360 B
Plaintext
19 lines
360 B
Plaintext
module.exports = {
|
|
publicPath: '/',
|
|
transpileDependencies: [
|
|
'bootstrap-vue',
|
|
],
|
|
pwa: {
|
|
name: 'Serverless Invoices',
|
|
manifestOptions: {
|
|
short_name: 'Invoices',
|
|
},
|
|
themeColor: '#edeff1',
|
|
appleMobileWebAppCapable: 'yes',
|
|
workboxPluginMode: 'GenerateSW',
|
|
workboxOptions: {
|
|
exclude: [/htaccess/],
|
|
},
|
|
},
|
|
};
|