Blank page after updated app build #17739
Unanswered
jbuese
asked this question in
General - Components / Directives / etc
Replies: 2 comments 2 replies
-
I think the boot files run before the Dark plugin is loaded. Try to run the code in an onMounted hook instead and see if that works. |
Beta Was this translation helpful? Give feedback.
1 reply
-
@jbuese we experienced this problem on our PWA for a long time and found it was caused by this filename hashes setting. If you've set it to false, try changing it back to true (the opposite of what the docs recommend). Quasar Docs - Filename hashes quirk |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have been experiencing this problem for some time now and cannot seem to find a solution. After we deploy changes, users get a completely blank page. The only fix is to reload the page. The problem seems to occur on desktop browsers (chrome, firefox, edge) and also on mobile PWA.
For the image, I tried to comment out the dark-mode.js code (specifically the
Dark.set(darkMode);
which seemed to be the culprit for the .set not being available), but got the above error instead.I have not seen the local development bug yet - I assume it has something to do with the build.
This is what our docker file is executing (through npm in package.json of course):
quasar build -m pwa
This is our config:
Beta Was this translation helpful? Give feedback.
All reactions