diff options
author | 2021-11-30 03:53:16 +0900 | |
---|---|---|
committer | 2021-11-29 12:53:16 -0600 | |
commit | bc7ee62615f7370b2133db372a97e946f33f43b2 (patch) | |
tree | 98c74d52234a2e0806cceeb8fa8c6d0c9179f680 /docs/src | |
parent | fe9c8952a6380e836a94d59353ed040a764d9eed (diff) | |
download | astro-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.md | 2 |
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/*"] } } } |