NUXT Build Error Cannot find module @oxc-parser/binding-linux-x64-gnu

After upgrading to Nuxt 4.3.x, I’m getting a some errors in my GitHub Actions. Here’s what’s happening: Here this is my current package,json After researching, I found that Nuxt uses Vite under the building However, container base images like Alpine use musl libc instead of glibc, making these native bindings incompatible out of the box. The fix is to declare them as optionalDependencies, so the package manager gracefully skips installation when the platform doesn’t match, rather than throwing an error and halting the entire build. Here is my update package,json with optionalDependencies Reference








