Skip to content

Commit 67b45f3

Browse files
committed
Add capacitor
1 parent ca3cee5 commit 67b45f3

File tree

3 files changed

+469
-8
lines changed

3 files changed

+469
-8
lines changed

capacitor.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import type { CapacitorConfig } from '@capacitor/cli';
2+
3+
const config: CapacitorConfig = {
4+
appId: 'com.compass.app',
5+
appName: 'Compass',
6+
webDir: 'web/.next'
7+
};
8+
9+
export default config;

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"postinstall": "./scripts/post_install.sh"
2525
},
2626
"dependencies": {
27+
"@capacitor/core": "7.4.4",
2728
"@playwright/test": "^1.54.2",
2829
"colorette": "^2.0.20",
2930
"prismjs": "^1.30.0",
@@ -32,6 +33,7 @@
3233
"react-markdown": "*"
3334
},
3435
"devDependencies": {
36+
"@capacitor/cli": "7.4.4",
3537
"@testing-library/dom": "^10.0.0",
3638
"@testing-library/jest-dom": "^6.6.4",
3739
"@testing-library/react": "^16.3.0",

0 commit comments

Comments
 (0)