From fa47ab7f21c8917d904658ea74a2a628f6f1dcac Mon Sep 17 00:00:00 2001 From: Serhii Shushliapin Date: Mon, 14 Feb 2022 15:18:35 +0200 Subject: [PATCH] Fix mkcert.exe path --- examples/helix-basic-nextjs/init.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/helix-basic-nextjs/init.ps1 b/examples/helix-basic-nextjs/init.ps1 index 1da1d807..196c9faa 100644 --- a/examples/helix-basic-nextjs/init.ps1 +++ b/examples/helix-basic-nextjs/init.ps1 @@ -155,7 +155,7 @@ Write-Host Write-Host ("#"*75) -ForegroundColor Cyan Write-Host "To avoid HTTPS errors, set the NODE_EXTRA_CA_CERTS environment variable" -ForegroundColor Cyan Write-Host "using the following commmand:" -ForegroundColor Cyan -Write-Host "setx NODE_EXTRA_CA_CERTS $(& $mkcert -CAROOT)\rootCA.pem" +Write-Host "setx NODE_EXTRA_CA_CERTS $(& .\docker\traefik\certs\mkcert.exe -CAROOT)\rootCA.pem" Write-Host Write-Host "You will need to restart your terminal or VS Code for it to take effect." -ForegroundColor Cyan Write-Host ("#"*75) -ForegroundColor Cyan \ No newline at end of file