react-player
react-player copied to clipboard
Export mux-player error upgrade to 3.0.0
Hello everyone.
I have encouraged with error bellow after upgrade react-player to 3.0.0 (also actualy for 3.3.1) in rather legacy project.
Project uses 16 nodejs, react-scripts: "4.0.3", react-app-rewired: "2.1.8", config:
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = function override(config) {
if (!config.plugins) {
config.plugins = [];
}
config.plugins.push(new CopyWebpackPlugin([{ from: 'src/assets', to: 'static/assets' }]));
return config;
};
I tried to upgrade Node.js to version 20, but it did nothing.
Could you please help me find out what's wrong?
P.S. The reason for the upgrade is "hlsError" and "too much recursion" error in Firefox on some tablets (not all). The video is stalling at some point and stops responding to controls. So I decided to upgrade the player from 2.9.0 to 3.0.0).
Did you found out what was causing the issue?