diff --git a/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/app/home/home.component.html b/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/app/home/home.component.html index 5a01ebadcf..a0973e55e4 100644 --- a/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/app/home/home.component.html +++ b/src/Microsoft.DotNet.Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/app/home/home.component.html @@ -3,14 +3,13 @@
To help you get started, we've also set up:
webpack build tool. Your client-side resources are dynamically built on demand. Updates are available as soon as you modify any file.webpack build tool produces minified static CSS and JavaScript files.ng serve. It runs in the background automatically, so your client-side resources are dynamically built on demand and the page refreshes when you modify any file.dotnet publish configuration automatically invokes ng build to produce minified, ahead-of-time compiled JavaScript files.The ClientApp subdirectory is a standard Angular CLI application. If you open a command prompt in that directory, you can run any ng command (e.g., ng test), or use npm to install extra packages into it.
If you want to enable server-side prerendering, see the steps in Startup.cs.
To help you get started, we've also set up:
create-react-app tool manually. Your client-side resources are dynamically built on demand. Updates are available as soon as you modify any file.create-react-app builds minified static CSS and JavaScript files.create-react-app runs in the background automatically, so your client-side resources are dynamically built on demand and the page refreshes when you modify any file.dotnet publish configuration produces minified, efficiently bundled JavaScript files.
- For larger applications, or for server-side prerendering (i.e., for isomorphic or universal applications), you should consider using a Flux/Redux-like architecture. You can generate an ASP.NET Core application with React and Redux using dotnet new reactredux instead of using this template.
-
The ClientApp subdirectory is a standard React application based on the create-react-app template. If you open a command prompt in that directory, you can run npm commands such as npm test or npm install.
Welcome to your new single-page application, built with:
To help you get started, we've also set up:
create-react-app tool manually. Your client-side resources are dynamically built on demand. Updates are available as soon as you modify any file.create-react-app builds minified static CSS and JavaScript files.create-react-app runs in the background automatically, so your client-side resources are dynamically built on demand and the page refreshes when you modify any file.dotnet publish configuration produces minified, efficiently bundled JavaScript files.The ClientApp subdirectory is a standard React application based on the create-react-app template. If you open a command prompt in that directory, you can run npm commands such as npm test or npm install.