I just compiled my project, and setup a ng-serve ready container. It just loads the file and I have not setup anything else.
I went for the "lazy way"
hahaha makes sense
okay is your code open-source?
maybe there's something up with the appwrite calls being made from the app
It's not open source but I can DM you the source
DMed the link
I'm running appwrite 1.3.8 btw
any chance you can see if any errors are being thrown while on mobile?
I don't know how. I've tried with the inspecter tool of Chromium but it doesnt throw a thing. Very odd. @safwan got my source code. Not sure how it goes.
So you're doing remote chrome debugger/dev tools?
Can you see the network logs to see what's loading?
i think you might have an infinite loop or something on your app...maybe nothing loads on mobile because there aren't enouhg resources to do so
CPU usage on your page is 100%
maybe that's why the page gets stuck
it gets stuck on desktop too. i have a hard time closing the window
infinite loop probably happens after data gets loaded which is why CPU isn't 100% on noapi:
maybe you can add some console.log() around to try and see where the loop is
I just have some "accessing logs" form the docker container on angular. But nothing fancy sadly. Going to try some console.log thing. Thanks for suggesting. So odd to have that issue on mobile. Makes no sense to me : <
I have no issue loading on my localhost serve. But as soon as its the live website, the issue occurs
did you check the CPU usage on localhost too?
Alright so I've done ng serve
for a dev server, and it worked perfectly fine
When I do ng build
and map the index.html
to a live server, mobile has issues
I have tried diagnosing the issue, but can't seem to figure it out
that's so strange
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...