Lỗi thông báo như sau:An error occurred while processing your request.
Development Mode
Swapping to Development environment will display more detailed information about the error that occurred.
Development environment should not be enabled in deployed applications, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development, and restarting the application.
Khi xuất bản asp net core theo mặc định, nếu biến ASPNETCORE_ENVIRONMENT không được đặt, nó sẽ hoạt động như production, hãy thử đặt ASPNETCORE_ENVIRONMENT trong các biến môi trường hoặc trong cấu hình web thành Development tạm thời để gỡ lỗi những gì đang diễn ra, nếu bạn đang sử dụng appsettings.development.json trong production, nó sẽ không được đọc nếu biến enviremoent không được đặt thành "Development".
Sửa lại như sau:
<environmentVariables>
<environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
</environmentVariables>