The following questions will test what we have learned in this chapter:
- In ASP.NET Core, what is the name of the file where we store any settings specific to the production environment?
- What were the reasons for our ASP.NET Core backend needing the Frontend setting?
- Let's pretend we have introduced a QA environment and have created the following npm script to execute a build for this environment:
"build:qa": "cross-env REACT_APP_ENV=qa npm run build"
What npm command would we use to produce a QA build?
- What would be broken if we didn't include the web.config file with our React frontend?
- Why didn't we use Azure Storage to host our frontend instead of Azure App Service?