summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar Vin E. R. Yap <82420632+vineryap@users.noreply.github.com> 2021-11-30 03:53:16 +0900
committerGravatar GitHub <noreply@github.com> 2021-11-29 12:53:16 -0600
commitbc7ee62615f7370b2133db372a97e946f33f43b2 (patch)
tree98c74d52234a2e0806cceeb8fa8c6d0c9179f680 /docs/src
parentfe9c8952a6380e836a94d59353ed040a764d9eed (diff)
downloadastro-bc7ee62615f7370b2133db372a97e946f33f43b2.tar.gz
astro-bc7ee62615f7370b2133db372a97e946f33f43b2.tar.zst
astro-bc7ee62615f7370b2133db372a97e946f33f43b2.zip
fixed aliasing path. (#2028)
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/migration/0.21.0.md2
1 files changed, 1 insertions, 1 deletions
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/*"]
}
}
}