From bc7ee62615f7370b2133db372a97e946f33f43b2 Mon Sep 17 00:00:00 2001 From: "Vin E. R. Yap" <82420632+vineryap@users.noreply.github.com> Date: Tue, 30 Nov 2021 03:53:16 +0900 Subject: [PATCH] fixed aliasing path. (#2028) --- docs/src/pages/migration/0.21.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/migration/0.21.0.md b/docs/src/pages/migration/0.21.0.md index 0ba113974..38a7236e9 100644 --- a/docs/src/pages/migration/0.21.0.md +++ b/docs/src/pages/migration/0.21.0.md @@ -32,7 +32,7 @@ In Astro v0.21, import aliases can be added from `tsconfig.json` or `jsconfig.js "compilerOptions": { "baseUrl": ".", "paths": { - "@/components/*": ["components/*"] + "@/components/*": ["src/components/*"] } } }