TypeError: Cannot read properties of undefined (reading 'buildMeta') #35154
Replies: 1 comment
-
This error is likely caused by a mismatch or misconfiguration in your frontend build dependencies, especially with Webpack. Superset's frontend requires Node.js ^20.16.0 and npm ^10.8.1, and uses webpack ^5.98.0 and webpack-cli ^4.10.0. To resolve this, try running the following commands in your npm install -f --no-optional --global webpack webpack-cli
npm install -f --no-optional
npm install -f --global webpack webpack-cli
npm install -f
npm run dev This sequence can help fix issues where Webpack's internal module graph is not built correctly, leading to errors like the one you're seeing. More details are available in this GitHub issue. If the problem persists, double-check that your Node.js and npm versions match the requirements in To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
npm run dev,\superset\superset-frontend\node_modules\webpack\lib\dependencies\HarmonyImportSpecifierDependency.js:216
(moduleGraph.getParentModule(this)).buildMeta
^
TypeError: Cannot read properties of undefined (reading 'buildMeta')
Beta Was this translation helpful? Give feedback.
All reactions