You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we host the astro dist files via express then navigate to that from within the client.
There's some problems with this:
You can navigate to the astro page from your desktop if you know the port, however since the main thread is communicated to via the electron context isolation method this web browser view largely doesn't work.
You can't open a second instance of the application, as the port is already in use.
Solutions:
Host files within electron more natively, as opposed to using express.
Introduce additional port switching logic for second instances of the app launching
The text was updated successfully, but these errors were encountered:
Currently we host the astro dist files via express then navigate to that from within the client.
There's some problems with this:
Solutions:
The text was updated successfully, but these errors were encountered: