dosubot[bot] commented on issue #31296: URL: https://github.com/apache/superset/issues/31296#issuecomment-2519043468
<!-- Greeting --> Hello @q631599119! I'm here to assist you with any bugs, questions, or contributions related to Superset. Let's work together to resolve your issue. <!-- Answer --> I found a similar open issue titled "superset-frontend ReferenceError: module is not defined" that might be relevant to your problem. The suggested solution in that issue was to comment out the `react-hot-loader` plugin in the `babel.config.js` file as a temporary workaround. This change resolved the issue for some users, although it is a temporary fix and the root cause related to differences between Linux and Windows remains unclear <sup>[[1]](https://github.com/apache/superset/issues/28557)</sup>. You might want to try this workaround to see if it resolves the error you're encountering. Here's how you can do it: 1. Open the `babel.config.js` file in your `superset-frontend` directory. 2. Locate the `plugins` array. 3. Comment out the line `'react-hot-loader/babel'`. ```javascript module.exports = { ... plugins: [ ... // 'react-hot-loader/babel', ] ... } ``` After making this change, try running `npm run dev-server` again and check if the error persists. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
