N
Nuxt3w ago
Prestgg

cloudflare Workers All Error

website works on Localhost but not on Cloudflare I'm use betterauth. Source Code: https://github.com/Prestgg1/AzeScript
GitHub
GitHub - Prestgg1/AzeScript
Contribute to Prestgg1/AzeScript development by creating an account on GitHub.
No description
3 Replies
kapa.ai
kapa.ai3w ago
Hi @Prestgg. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Based on the knowledge sources provided, I can see that you're experiencing issues with deploying your Nuxt application to Cloudflare Workers. This is a common issue that several Nuxt users have encountered. Let me explain what might be happening and how to fix it. Common Cloudflare Workers Deployment Issues There are several known issues when deploying Nuxt applications to Cloudflare Pages/Workers: 1. Performance Observer Initialization Error: Recent issues with Nuxt 3.16.0 deployments to Cloudflare Pages show errors like [unenv] process.getBuiltinModule is not implemented yet or Cannot access '_PerformanceObserver' before initialization GitHub Issue #31257. 2. Missing JS Chunks: After deployment, websites may partially load with 404 errors for JS chunks, requiring a hard refresh to work properly GitHub Issue #31336. Potential Solutions Here are some solutions that have worked for others: 1. Downgrade Nitro: Some users found success by downgrading to Nitro 2.10.4 instead of using the latest version. As mentioned in one of the issues: "found a temporary fix, of using nitro 2.10.4 instead of the latest. that works." GitHub Issue #31257. 2. Update to Latest Nitro: Alternatively, issues related to performance/perf_hooks should be resolved in Nitropack 2.11.6 GitHub Issue #31257. 3. Check Cloudflare Settings: Make sure to disable certain Cloudflare features that can interfere with Nuxt: - Disable "Rocket Loader™" under Speed > Optimization > Content Optimization - Disable "Mirage" under Speed > Optimization > Image Optimization - Disable "Email Address Obfuscation" under Scrape Shield Nuxt Deployment Docs 4. Check for Compression Issues: Some users reported issues with the h3-compression dependency (version ^0.3.2) causing Unicode character replacement problems Stack Overflow. Specific Build Configuration When building for Cloudflare Pages, make sure to use the correct preset:
nuxi build --preset=cloudflare_pages
nuxi build --preset=cloudflare_pages
Or configure it in your nuxt.config.ts:
export default defineNuxtConfig({
nitro: {
preset: 'cloudflare_pages',
},
});
export default defineNuxtConfig({
nitro: {
preset: 'cloudflare_pages',
},
});
Without seeing the specific error you're encountering, it's difficult to pinpoint the exact issue. If you could share the error messages from your Cloudflare deployment logs, I could provide more targeted assistance. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai3w ago
<@582277346934128651> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
Prestgg
PrestggOP3w ago
Actually I am getting an error on my endpoints in betterauth. But it works fine on localhost. But sometimes it works on the server. Sometimes it doesn't. Cloudflare workers sometimes error Error 1101

Did you find this page helpful?