iOS Capacitor setup

This commit is contained in:
Jose Olarte III
2025-04-28 21:59:00 +08:00
parent 9cafe1cc83
commit 555b4a459d
10 changed files with 142 additions and 80 deletions

View File

@@ -1,25 +0,0 @@
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'app.timesafari',
appName: 'TimeSafari',
webDir: 'dist',
bundledWebRuntime: false,
server: {
cleartext: true,
},
plugins: {
App: {
appUrlOpen: {
handlers: [
{
url: "timesafari://*",
autoVerify: true
}
]
}
}
}
};
export default config;