We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9674301 commit 12b26fdCopy full SHA for 12b26fd
2 files changed
.github/workflows/build-apk.yml
@@ -43,7 +43,9 @@ jobs:
43
NODE_ENV: production
44
45
- name: Sync Capacitor Android
46
- run: npx cap sync android
+ run: |
47
+ mkdir -p android/app/src/main/assets/public
48
+ npx cap sync android
49
50
- name: Build APK
51
working-directory: ./android
next.config.mjs
@@ -10,6 +10,7 @@ const nextConfig = {
10
ignoreDuringBuilds: true,
11
},
12
turbopack: { root: '.' },
13
+ output: 'export',
14
};
15
16
export default nextConfig;
0 commit comments