-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
It uses a version of deno.land/std/http that is too old.
The best fix would be to replace:
serve(blogHandler, {
port: blogState.port,
hostname: blogState.hostname,
onError: errorHandler,
});With this:
Deno.serve(blogHandler, {
port: blogState.port,
hostname: blogState.hostname,
onError: errorHandler,
});Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels