emigrate/docs/src/components/Link.astro

11 lines
272 B
Text

---
interface Props {
href: string;
}
const base = import.meta.env.BASE_URL === '/' || !import.meta.env.BASE_URL ? '' : import.meta.env.BASE_URL;
const site = import.meta.env.SITE ?? '';
const { href } = Astro.props;
---
<a href={`${site}${base}${href}`}><slot /></a>