Attempted to load @next/swc-win32-ia32-msvc, but an error occurred #61407
-
Summaryv21.6.1 ia32 win32 I followed all the steps noted on: https://nextjs.org/docs/messages/failed-loading-swc Additional information>npm run dev
> dev
> next dev
▲ Next.js 14.1.0
- Local: http://localhost:3000
⚠ Attempted to load @next/swc-win32-ia32-msvc, but an error occurred: A dynamic link library (DLL) initialization routine failed.
\\?\C:\Users\TEST\eclipse-workspace\REACT\node_modules\@next\swc-win32-ia32-msvc\next-swc.win32-ia32-msvc.node
⨯ Failed to load SWC binary for win32/ia32, see more info here: https://nextjs.org/docs/messages/failed-loading-swc ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
also attempted to disable swcMinify AND ran this: npm i @next/swc-win32-ia32-msvc still get same error (but other info in there). I did run npm install and npm run dev again but got same error dev
▲ Next.js 14.1.0
⚠ Disabling SWC Minifer will not be an option in the next major version. Please report any issues you may be experiencing to https://github.com/vercel/next.js/issues |
Beta Was this translation helpful? Give feedback.
-
The issue was I had node 32 and needed node 64. |
Beta Was this translation helpful? Give feedback.
-
Hey there! I understand you're encountering problems with Node.js on your 64-bit system. It seems you might have a 32-bit version of Node.js installed, which can cause compatibility issues. Here's how to resolve this:
Open the Control Panel. Head over to the official Node.js download page: https://nodejs.org/en/download Open a command prompt window (Start menu, search for cmd, press Enter). While not strictly necessary, restarting your computer ensures any system-wide environment variables are updated to reflect the new Node.js installation. Package Manager Compatibility: If you're using a package manager like npm or yarn, you may need to re-install your global packages after switching to the 64-bit version. |
Beta Was this translation helpful? Give feedback.
-
An alternative solution is trying to uninstall your
|
Beta Was this translation helpful? Give feedback.
The issue was I had node 32 and needed node 64.
Installing nvm really helped in making it easier to figure that out.