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 07bc9e2 commit 061ab38Copy full SHA for 061ab38
.madrun.js
@@ -7,16 +7,7 @@ const testEnv = defineEnv({
7
css: true,
8
});
9
10
-const is17 = /^v1[789]/.test(process.version);
11
-const is20 = process.version.startsWith('v2');
12
-
13
-// fix for ERR_OSSL_EVP_UNSUPPORTED on node v17
14
-// flag '--openssl-legacy-provider' not supported
15
-// on earlier version of node.js
16
-//
17
-// https://stackoverflow.com/a/69746937/4536327
18
-const buildEnv = (is17 || is20) && {
19
- NODE_OPTIONS: '--openssl-legacy-provider',
+const buildEnv = {
20
NODE_ENV: 'production',
21
};
22
0 commit comments