Skip to content

Commit 73be6c2

Browse files
committed
save
1 parent 0ffbdf1 commit 73be6c2

22 files changed

+1093
-13
lines changed

capacitor.config.ts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { CapacitorConfig } from '@capacitor/cli';
2+
3+
const config: CapacitorConfig = {
4+
appId: 'org.nostrchat.app',
5+
appName: 'NostrChat',
6+
webDir: 'build',
7+
server: {
8+
androidScheme: 'https'
9+
},
10+
ios: {
11+
contentInset: 'always'
12+
}
13+
};
14+
15+
export default config;

ios/.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
App/build
2+
App/Pods
3+
App/output
4+
App/App/public
5+
DerivedData
6+
xcuserdata
7+
8+
# Cordova plugins for Capacitor
9+
capacitor-cordova-ios-plugins
10+
11+
# Generated Config files
12+
App/App/capacitor.config.json
13+
App/App/config.xml

0 commit comments

Comments
 (0)