[Fresh 2] Deploy Classic fails with ISOLATE_INTERNAL_FAILURE 100%
After upgrading to Fresh 2, deploying to my existing Deno Classic project results in 100% failure with ISOLATE_INTERNAL_FAILURE.
More Context:
1.
vite
is able run the dev server without issue.
2. vite build
succeed.
3. deno serve -A _fresh/server.js
initially fails for it cannot resolve https-proxy-agent
, made it work by adding it in build.rollupOptions.external
and installing it separately.
4. This project contains cron jobs so moving to EA is not an option yet.
1 Reply
"ISOLATE_INTERNAL_FAILURE" is a generic opaque error. In context of Fresh 2 this is often associated with not updating the entry point to
deno serve -A _fresh/server.js
, but that happened here.
"fails for it cannot resolve https-proxy-agent" sounds suspicious. But without seeing the actual code only crude guesswork is possible.