Hi @kill_kinglion
Thanks, we will update the related files. Please follow https://github.com/aspnetzero/aspnet-zero-core/issues/4777
Anyway, I couldnt see the github. My github account is "Atirudom".
All fixed for question 1.
ng
command runnable seems to be the solution to missing ng
.ng build --prod
is not usable now. Changing to ng build --configuration production
to make Angular build and ./dist now appear.New-Item -ItemType directory -Path (Join-Path $outputFolder "ng" "nginx.conf")
It seems that this line of command have 3 arguments of Join-Path but my powershell doesnt accept 3 arguments so I let ChatGPT redesign the command to make it usable in 2 arguments. But the key shenanigan is that command line tries to create a folder called nginx.conf
which seems unreasonable since there is no point creating a folder called nginx.conf and there is also another command that will copy the actual file of nginx.conf and paste there anyway so I simply remove this line and the PowerShell starts working now.