Getting ready for production
In this section, we'll see how we can further refine our apps' source code in order to get them ready for production usage. We'll mostly deal with server-side and client-side caching, environment configuration, and so on. While we're there, we'll take the chance to learn some useful production optimization tips offered by our front-end and back-end frameworks.
More specifically, we're going to cover the following:
- ASP.NET Core deployment tips, where we'll learn how our back-end has been optimized for production usage
- Angular deployment tips, where we'll review some strategies used by the Visual Studio template to optimize the front-end production building phase
Let's get to work!
ASP.NET Core deployment tips
As we most likely already know, ASP.NET Core allows developers to adjust an application's behavior across many environments: the most common of these are development...