Skip to content

Commit f780547

Browse files
James ClarkeJames Clarke
authored andcommitted
Fix build with node 17
1 parent 98a1507 commit f780547

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

openssl.cnf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
openssl_conf = openssl_init
2+
3+
[openssl_init]
4+
providers = provider_sect
5+
6+
[provider_sect]
7+
default = default_sect
8+
legacy = legacy_sect
9+
10+
[default_sect]
11+
activate = 1
12+
13+
[legacy_sect]
14+
activate = 1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"web-vitals": "^1.0.1"
1515
},
1616
"scripts": {
17-
"start": "react-scripts start",
17+
"start": "export export OPENSSL_CONF=openssl.cnf && react-scripts start",
1818
"build": "react-scripts build",
1919
"test": "react-scripts test",
2020
"eject": "react-scripts eject"

0 commit comments

Comments
 (0)