Kimberly Cottrell
Results
2
comments of
Kimberly Cottrell
A temporary workaround to this is to open an additional new terminal session and run `docker compose cp . app:/var/www/html` after `watch` is running. I wanted to get a PR...
I ran into this. You can get past this by simply using this in the main.ts: ``` Deno.serve( { port: 1993, hostname: "0.0.0.0" }, (_req) => new Response("Hello, world") );...