Deno2 with fresh gets stuck on build
Just hangs on Assets written to: C:\Git\fresh_fresh
I notice some empty chunks, how to I troubleshoot further?
1 Reply
fixed it seen similar issue
https://github.com/denoland/fresh/issues/1683#issuecomment-3110167718
was a cron issue, wrapped in
const isBuildMode = Deno.args.includes("build");
if (!isBuildMode) {
// Move cron stuff here
}
and it worked 🙂
GitHub
Build step hangs indefinatly · Issue #1683 · denoland/fresh
I have a project which works fine but attempting to pre-build the islands hangs forever. I noticed it locally but thought maybe it was my local environment but then created a workflow to publish an...