-
|
Hi @lazarv, I'm having reports on some devices and networks that people accessing my Lilt site: on Chrome are reporting that lilt wishes to "look for and connect to any device on your local network". Seems to be related to this: https://developer.chrome.com/blog/local-network-access/ This does not appear consistently: I'm finding that systems on a corporate network and Macs seem to report it most frequently. On my device I never get this permission requested, on either Firefox or Chrome and irrespective of what network I am on. I am wondering if this is anything to do with the internals of how Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi @nickw1, I checked out the Lilt site and when I select a module, the RSC request on navigation includes: How do you host the app in production? You need to see the public hostname or relative URL in the RSC response instead of |
Beta Was this translation helpful? Give feedback.
Hi @nickw1,
I checked out the Lilt site and when I select a module, the RSC request on navigation includes:
:HL["https://localhost:3002/assets/layout-CiEbUtZs.css","style"]. This is the RSC request in network tab for https://lilt.hikar.org/rsc.x-component?module=DSA.How do you host the app in production?
When using a proxy, you need to use the
--trust-proxyoption for the CLI start command to be able to useX-Forwarded-*headers. You can also try to specify the origin either using the--origin "lilt.hikar.org"CLI option or theORIGIN="lilt.hikar.org"environment variable.You need to see the public hostname or relative URL in the RSC response instead of
localhost:3002and that should re…