Skip to content

Commit

Permalink
When trying to compile the app on Node v17 I was getting errors error…
Browse files Browse the repository at this point in the history
…:0308010C:digital envelope routines::unsupported reading online showed this was related to openssl. The hacks and workarounds seem to disable security. But an easier option was to use Node v16 - so I have added a constraint to the node engine in the package.json
  • Loading branch information
darrendignam committed Nov 2, 2021
1 parent e36a7e4 commit e732cfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

},
"engines": {
"node": ">=12"
"node": ">=12 <17"
},
"build": {
"productName": "OPF Carrus",
Expand Down

0 comments on commit e732cfa

Please sign in to comment.