fix: try to address loading typescript from a compiled binary to no avail: https://github.com/denoland/deno/issues/18327#issuecomment-2989449015
This commit is contained in:
parent
62761723d4
commit
b0548f05cc
3 changed files with 11 additions and 5 deletions
|
@ -136,6 +136,7 @@ export class SERVER {
|
|||
port: this.options.port ?? DEFAULT_SERVER_OPTIONS.port,
|
||||
hostname: this.options.hostname ?? DEFAULT_SERVER_OPTIONS.hostname,
|
||||
onError: (error: unknown) => {
|
||||
console.error(error);
|
||||
return Response.json({ error: { message: (error as Error).message } }, { status: 500 });
|
||||
},
|
||||
signal
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue