I am suddenly experiencing errors when deploying to Vercel. Here are the steps that I’m taking and where it errors out:
Deployed GitHub repository to Vercel:
https://nuxtui-pro-docs6.vercel.app
Changed h1 to “Experience the new web”, redeployed, and got the following error:
Any suggestions?
Thank you,
Erin Halligan
erin@designcandy.com
832-651-5384
neversitdull
(Josh Dunsterville)
December 18, 2024, 3:06pm
2
The warning points to some compatibility issue between CommonJS and ES Modules. I’ve never worked with Nuxt but my guess is that you may need to update your config to make sure you’re explicitly setting the module format. I would also check your packages to make sure they are all up to date.
This should just be a warning though and not break your deployments. Are the builds completely failing?
Yes, here’s the error:
(Thank you for replying!)
amyegan
(Amy Egan)
January 16, 2025, 5:02pm
4
If the project uses TypeScript, it might just need a tsconfig.json
set for ESM.
Someone else ran into that issue recently. Full solution here:
Hi, Arpit! Welcome to the Vercel Community
As far as I understand, this error typically occurs when there’s a mismatch between CommonJS and ES Module syntax. I have a few suggestions!
First, make sure your package.json file includes the following:
{
"type": "module"
}
This tells Node.js to treat all .js files in your project as ES modules.
Update your import statements to use ES Module syntax. For Hono, it should look like this:
import { Hono } from 'hono'
If you’re using Typ…
1 Like
system
(system)
Closed
February 15, 2025, 5:02pm
5
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.