mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			477 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			13 lines
		
	
	
		
			477 B
		
	
	
	
		
			TypeScript
		
	
import { Link as GeistLink, LinkProps } from "@geist-ui/core"
 | 
						|
import { useRouter } from "next/router";
 | 
						|
 | 
						|
const Link = (props: LinkProps) => {
 | 
						|
    const { basePath } = useRouter();
 | 
						|
    const propHrefWithoutLeadingSlash = props.href && props.href.startsWith("/") ? props.href.substr(1) : props.href;
 | 
						|
    const href = basePath ? `${basePath}/${propHrefWithoutLeadingSlash}` : props.href;
 | 
						|
    console.log(href)
 | 
						|
    return <GeistLink {...props} href={href} />
 | 
						|
}
 | 
						|
 | 
						|
export default Link
 |