Skip to content

Commit a43a5ae

Browse files
committed
redirect link added
1 parent f8e4e3c commit a43a5ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

angular/GettingStarted/getting-started-with-webpack-aot.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ The below steps depicts the configuration of `@ngtools/webpack` in Angular appli
6868

6969
### Options for AngularCompilerPlugin
7070

71-
* Add instance of [AngularCompilerPlugin](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack), which has an apply property. This apply property is called by the webpack compiler, giving access to the entire compilation life cycle. Add options `tsConfigPath` and `entryModule` with `AngularCompilerPlugin` instance.
71+
* Add instance of [AngularCompilerPlugin](https://github.com/angular/angular-cli/tree/main/packages/ngtools/webpack), which has an apply property. This apply property is called by the webpack compiler, giving access to the entire compilation life cycle. Add options `tsConfigPath` and `entryModule` with `AngularCompilerPlugin` instance.
7272

7373
* `tsConfigPath` - The path to the `tsconfig.json` file. In your `tsconfig.json`, you can pass options to the Angular Compiler with `angularCompilerOptions`.
7474

7575
* `entryModule` - Optional if specified in `angularCompilerOptions`. The path and classname of the main application module. This follows the format `path/to/file#ClassName`.
7676

77-
N> To know more about Options in AOT refer [here](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack)
77+
N> To know more about Options in AOT refer [here](https://github.com/angular/angular-cli/tree/main/packages/ngtools/webpack)
7878

7979
Refer to the below AOT configuration code snippet for `config/webpack.dev.js` file.
8080

@@ -652,7 +652,7 @@ export const rootRouterConfig: Routes = [
652652

653653
## Running the application
654654

655-
* Now run the application with below command and navigate to [http://localhost:3000/](http://localhost:3000/) to see the output window.
655+
* Now run the application with below command and navigate to [http://localhost:3000/](https://locall.host/3000/) to see the output window.
656656

657657
{% highlight javascript %}
658658
npm start

0 commit comments

Comments
 (0)