miru/capacitor/capacitor.config.js
ThaUnknown f16041225c fix: buffer creation
fix: drop cors fetch, it wont function
feat: storage quota
2023-11-13 14:19:32 +01:00

23 lines
578 B
JavaScript

const config = {
appId: 'watch.miru',
appName: 'Miru',
webDir: 'public',
bundledWebRuntime: false,
plugins: {
SplashScreen: {
launchShowDuration: 0
},
CapacitorHttp: {
enabled: false
}
},
// remove server section before making production build
server: {
// for android only, below settings will work out of the box
// for iOS or both, change the url to http://your-device-ip
// To discover your workstation IP, just run ifconfig
url: 'http://localhost:5001/app.html',
cleartext: true
}
}
module.exports = config