Cannot read properties of undefined (reading 'length') #16218
Replies: 5 comments 37 replies
-
I think a bug somewhere in |
Beta Was this translation helpful? Give feedback.
-
I'm seeing this in next 14.1.3... seemingly out of nowhere |
Beta Was this translation helpful? Give feedback.
-
We faced the issue on our CI in august and it just reappears. |
Beta Was this translation helpful? Give feedback.
-
I faced this same issue in Next.js 15, but solved it by deleting node_modules and reinstalling everything. |
Beta Was this translation helpful? Give feedback.
-
Well for Nextjs with tauri, try disable WASM. next.config.ts const nextConfig: NextConfig = {
webpack: (config) => {
config.experiments = {
...config.experiments,
asyncWebAssembly: false,
syncWebAssembly: false,
};
return config;
},
}; |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey there,
I am upgrading my webpack dependency in my Electron app from
4.46.0
to the latest5.74.0
. I am running into the following error message when building my project:webpack/lib/util/hash/wasm-hash.js
Lines 106 to 108 in 9fcaa24
This is the content of the
webpack.config.js
:Does anything stand out that could cause this, or is this an issue in webpack? Any help is highly appreciated.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions