josueValrob the message after "npm start
" is normal if you haven't run a production build yet.
The glibc error comes after the following error:
error - Failed to load SWC binary, see more info here: https://nextjs.org/docs/messages/failed-loading-swc
You can work around it by disabling SWC. To do so, create a file named ".babelrc
" in your NextJS project directory with the following contents:
{
"presets": ["next/babel"]
}
(These steps came from the URL mentioned in the error message.)