Hello guys.
I have a project that I want to serve remotely from a server, in an Android app. So what I’m doing right now is generating a build, uploading the contents of /www/
to my server, and then I added the URL to capacitor.config.ts
:
const baseConfig: CapacitorConfig = {
...
server: {
url: "https://mysite.com"
}
}
This works perfectly, but now my problem is that everytime I compile the project, the source code is still being generated in android/app/src/main/assets/public
. How can I disable this?
Thanks a lot.
1 post - 1 participant