Base solution for your next web application

Activities of "kill_kinglion"

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.

  1. installing angular/cli -g to make ng command runnable seems to be the solution to missing ng.
  2. ng build --prod is not usable now. Changing to ng build --configuration production to make Angular build and ./dist now appear.
  3. The join path error was caused by this 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.
Showing 1 to 2 of 2 entries