diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 73eec7e..9109d0d 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -12,6 +12,7 @@ import Header from '@/components/header/Header.astro'; import PageMeta from '@/components/meta/PageMeta.astro'; import SearchDialog from '@/components/search/SearchDialog.astro'; import options from '@/options'; +import { urlJoin } from '@/helpers/tools'; interface Props { title?: string; @@ -47,6 +48,26 @@ const description = Astro.props.description || options.description; +