We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe19b42 commit 568755aCopy full SHA for 568755a
packages/react-devtools/app.html
@@ -151,8 +151,10 @@
151
152
try {
153
if (process.env.KEY && process.env.CERT) {
154
- options.key = fs.readFileSync(process.env.KEY);
155
- options.cert = fs.readFileSync(process.env.CERT);
+ options = {
+ key: fs.readFileSync(process.env.KEY),
156
+ cert: fs.readFileSync(process.env.CERT)
157
+ };
158
useHttps = true;
159
}
160
} catch (err) {
0 commit comments