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
Trying to figure out how to get a svelte-kit app (https://kit.svelte.dev) working in chalet. I can get the app running, but it keeps reloading. Svelte-kit apps use vite (https://vitejs.dev) for hot-module-reloading in development, and vite is trying to connect to wss://my-app.localhost:3000 and failing, so it tries reloading, infinitely. Not sure how to get this working so that chalet will forward those web socket connections through to the vite server. Here's my app config:
Follow up: I was trying again to get vite working in chalet, and I noticed that some of the example servers in the readme include --port $PORT, so I tried that with my vite app and it works! Including wss/hmr (web sockets / hot module replacement)
{
"cwd": "/Users/pascal/Projects/vite-chalet",
"cmd": "npm run dev -- --port $PORT",
"env": {
"PATH": "[omitted]"
}
}
Trying to figure out how to get a svelte-kit app (https://kit.svelte.dev) working in chalet. I can get the app running, but it keeps reloading. Svelte-kit apps use vite (https://vitejs.dev) for hot-module-reloading in development, and vite is trying to connect to wss://my-app.localhost:3000 and failing, so it tries reloading, infinitely. Not sure how to get this working so that chalet will forward those web socket connections through to the vite server. Here's my app config:
I have self-signed SSL working, so the app loads at https://my-app.localhost, but it can't reach wss:my-app.localhost:3000
Will keep trying and report what I find but if anyone has any guidance I'd appreciate it.
The text was updated successfully, but these errors were encountered: