diff --git a/docs/documentation/stories/configure-hmr.md b/docs/documentation/stories/configure-hmr.md index 30c8b2e6aa8e..27bb6c92217a 100644 --- a/docs/documentation/stories/configure-hmr.md +++ b/docs/documentation/stories/configure-hmr.md @@ -41,13 +41,16 @@ export const environment = { ``` -Update `angular.json` to include an hmr environment as explained [here](./application-environments) and add a configuration within serve to enable hmr. +Update `angular.json` to include an hmr environment as explained [here](./application-environments.md) and add a configuration within serve to enable hmr. ```json "serve": { "configuration": { ... - "hmr": true + "hmr": { + "hmr": true, + "hmrWarning": false + } } } ```