mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
24 lines
506 B
JavaScript
24 lines
506 B
JavaScript
module.exports = {
|
|
lintOnSave: false,
|
|
pwa: {
|
|
name: 'Orbis.zone',
|
|
themeColor: '#4DBA87',
|
|
msTileColor: '#000000',
|
|
appleMobileWebAppCapable: 'yes',
|
|
appleMobileWebAppStatusBarStyle: 'black',
|
|
|
|
workboxPluginMode: 'InjectManifest',
|
|
workboxOptions: {
|
|
// swSrc is required in InjectManifest mode.
|
|
swSrc: 'public/sw.js',
|
|
swDest: 'service-worker.js'
|
|
// ...other Workbox options...
|
|
}
|
|
},
|
|
devServer: {
|
|
proxy: 'http://localhost:3030',
|
|
disableHostCheck: true,
|
|
host: '0.0.0.0'
|
|
}
|
|
};
|