What is the name of the domain?
proxyai.tech
What is the error number?
[ERROR] The entry-point file at “.open-next/worker.js” was not found.
What is the error message?
✘ [ERROR] The entry-point file at “.open-next/worker.js” was not found.
What is the issue you’re encountering
While I was deploying my Next.js 15 application on Cloudflare workers using Open-next adapter, I got an error while deploying to Cloudflare’ global network, The error message is: ✘ [ERROR] The entry-point file at “.open-next/worker.js” was not found.
What steps have you taken to resolve the issue?
This is my wrangler.jsonc:
{
“$schema”: “node_modules/wrangler/config-schema.json”,
“main”: “.open-next/worker.js”,
“name”: “proxy”,
“compatibility_date”: “2025-03-25”,
“compatibility_flags”: [
“nodejs_compat”,
“global_fetch_strictly_public”
],
“assets”: {
“directory”: “.open-next/assets”,
“binding”: “ASSETS”
}
}
This is the open-next.config.ts:
import { defineCloudflareConfig } from “@opennextjs/cloudflare”;
import staticAssetsIncrementalCache from “@opennextjs/cloudflare/overrides/incremental-cache/static-assets-incremental-cache”;
export default defineCloudflareConfig({
incrementalCache: staticAssetsIncrementalCache,
});
I tried everything still nothing worked.