ambergristle
ambergristle
Hi @Mokto! I ran into a similar issue, but it turned out to be the deployment platform. Can you share some details about your current env/deployment setup? From the SvelteKit...
@bong-u i found this issue because i ran into a similar error message my problem involved docker-compose and a mis-configured redis url. passing `redis://:6379` to the client config solved the...
Hi! I've potentially run into a similar issue. I use Docker to build a Next.js (`14.0.3`) app running on Bun (`oven/bun:1.0-slim`). I use App Router to `GET` some data from...
> Locally (via Docker), the app mostly has no issue; I've been able to repro a couple times, but I'm not sure how. Deploying with Node instead of Bun seems...
hey @yusukebe! i came across this issue while trying to implement your [hono-vite-react plugin](https://github.com/yusukebe/hono-vite-react-stack/tree/main) for bun. i really like the ssr approach (instead of statically serving `index.html`). when running the...
thanks for the quick reply @yusukebe! i had installed `vite-plugin-ssr-hot-reload` but still got the error. thanks for confirming that it should inject the script. i'll try and reproduce the issue...
@yusukebe here's my repo: https://github.com/ambergristle/hono-react i'll keep trying to track down the issue, but i'm still trying to wrap my head around vite, so i appreciate any feedback you might...
@yusukebe i managed to resolve the issue by changing the plugin order, specifically by calling `ssrHotReload` before `devServer`. here's the commit. only the `vite.config.ts` update is relevant: https://github.com/ambergristle/hono-react/commit/06aa534ac9dc5fe206801b66157bb4d8b9574931 let me...
thanks @yusukebe! it works great could you share a little more about why `content-type` isn't fixed if `devServer` is executed first? is it because `devServer` formats and returns the response?
@yusukebe fair enough. I'll look into it if I have some time