Starting with deno task dev will, upon first request to the server, take multiple minutes until the page is shown and interactive. During that time, deno run --ext=js -A ... vite.js is constantly at 100% CPU usage on one processor core. After that is done, the app and hot reloading work mostly normal, but some changes (e.g. new routes) will restart that process.
The project was created with deno run -Ar jsr:@fresh/init. We then added the following modules:
- tailwindcss
- daisyui
- hono
- zod & zod-openapi
Starting with
deno task devwill, upon first request to the server, take multiple minutes until the page is shown and interactive. During that time,deno run --ext=js -A ... vite.jsis constantly at 100% CPU usage on one processor core. After that is done, the app and hot reloading work mostly normal, but some changes (e.g. new routes) will restart that process.The project was created with
deno run -Ar jsr:@fresh/init. We then added the following modules: