migu/capacitor/capacitor.config.js
2023-11-12 14:43:06 +01:00

20 lines
519 B
JavaScript

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