miru/capacitor/capacitor.config.js
ThaUnknown e27d4c4ab5 feat: cors-fetch
feat: clean up chrome libs
2023-11-13 13:07:56 +01:00

23 lines
577 B
JavaScript

const config = {
appId: 'watch.miru',
appName: 'Miru',
webDir: 'public',
bundledWebRuntime: false,
plugins: {
SplashScreen: {
launchShowDuration: 0
},
CapacitorHttp: {
enabled: true
}
},
// 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