我正在尝试使用 electron-devtool-installer 向电子应用程序添加“react-performance-devtool”扩展。
当我尝试使用文档中提到的扩展名之一时,它工作正常,但使用任何其他扩展名时出现错误。
我正在尝试这样的事情:
const installer = require("electron-devtools-installer");
const forceDownload = !!process.env.UPGRADE_EXTENSIONS;
const extensions = [
"REACT_DEVELOPER_TOOLS",
"REDUX_DEVTOOLS",
"REACT_PERFORMANCE_DEVTOOLS"
];
return Promise.all(
extensions.map(name => installer.default(installer[name], forceDownload))
).catch(console.log);
};
我收到以下错误:
Error: Invalid extensionReference passed in: "undefined"