We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed that when running vite using hono/vite-dev-server it will block after:
vite
hono/vite-dev-server
VITE v5.3.5 ready in 371 ms ➜ Local: http://localhost:5173/ ➜ Network: use --host to expose
Until one request hits that port 5173, then the remaining code in your entry will trigger.
entry
Example; You have an app and some .get() with a upgradeWebSocket. Then the client is using client.ws.$ws().
app
.get()
upgradeWebSocket
client.ws.$ws()
This also has the adverse effect of delaying a WebSocket request until an http one is made. Is there anyway to tell the dev server to not block.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed that when running
vite
usinghono/vite-dev-server
it will block after:Until one request hits that port 5173, then the remaining code in your
entry
will trigger.Example; You have an
app
and some.get()
with aupgradeWebSocket
. Then the client is usingclient.ws.$ws()
.This also has the adverse effect of delaying a WebSocket request until an http one is made. Is there anyway to tell the dev server to not block.
The text was updated successfully, but these errors were encountered: