diff options
author | 2021-08-26 15:02:38 -0700 | |
---|---|---|
committer | 2021-08-26 15:03:21 -0700 | |
commit | 2e8db7ad2384b756894eac6be72bcf720f7f28fa (patch) | |
tree | 074ff88116520c3484210a0b94331b0f2b81581b /examples/docs/src/components/LeftSidebar/LeftSidebar.astro | |
parent | b7ada11ddbabe4dd2f0798e140e5b280de4d6952 (diff) | |
download | astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.tar.gz astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.tar.zst astro-2e8db7ad2384b756894eac6be72bcf720f7f28fa.zip |
add algolia and cleanup docs readme
Diffstat (limited to 'examples/docs/src/components/LeftSidebar/LeftSidebar.astro')
-rw-r--r-- | examples/docs/src/components/LeftSidebar/LeftSidebar.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/src/components/LeftSidebar/LeftSidebar.astro b/examples/docs/src/components/LeftSidebar/LeftSidebar.astro index 96bd36fba..e979dc80e 100644 --- a/examples/docs/src/components/LeftSidebar/LeftSidebar.astro +++ b/examples/docs/src/components/LeftSidebar/LeftSidebar.astro @@ -1,6 +1,6 @@ --- +import { getLanguageFromURL } from '../../languages.ts'; import { SIDEBAR } from '../../config.ts'; -import { getLanguageFromURL } from '../util.ts'; const {currentPage} = Astro.props; const currentPageMatch = currentPage.slice(1); const langCode = getLanguageFromURL(currentPage); |