From 17500e8d4a6df689ac725eace0fce0eaa001e2f9 Mon Sep 17 00:00:00 2001 From: Jovana Djuric Date: Mon, 20 Jan 2025 17:07:26 -0500 Subject: [PATCH] docs(standalone-apps): fix broken urls --- content/application-context.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/application-context.md b/content/application-context.md index c4e2a2c75b..b89b965f5f 100644 --- a/content/application-context.md +++ b/content/application-context.md @@ -60,7 +60,7 @@ For example, even if you register a global interceptor in your application and t #### Retrieving providers from dynamic modules -When dealing with [dynamic modules](./fundamentals/dynamic-modules.md), we should supply the same object that represents the registered dynamic module in the application to `app.select`. For example: +When dealing with [dynamic modules](/fundamentals/dynamic-modules), we should supply the same object that represents the registered dynamic module in the application to `app.select`. For example: ```typescript @@filename() @@ -93,7 +93,7 @@ async function bootstrap() { bootstrap(); ``` -And as mentioned in the [Lifecycle events](./fundamentals/lifecycle-events.md) chapter, that will trigger lifecycle hooks. +And as mentioned in the [Lifecycle events](/fundamentals/lifecycle-events) chapter, that will trigger lifecycle hooks. #### Example