mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
fix(NA): missing --openssl-legacy-provider on webpack worker inside plugin helpers (#169030)
This PR fixes a problem inside plugin-helpers as the webpack runner was running without `--openssl-legacy-provider` which breaks in the latest node version.
This commit is contained in:
parent
9827aece21
commit
c3936571fc
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ export async function optimize({
|
|||
|
||||
const proc = fork(require.resolve('./optimize_worker'), {
|
||||
cwd: REPO_ROOT,
|
||||
execArgv: ['--require=@kbn/babel-register/install'],
|
||||
execArgv: ['--require=@kbn/babel-register/install', '--openssl-legacy-provider'],
|
||||
stdio: ['ignore', 'pipe', 'pipe', 'ipc'],
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue