fix(spa): handle HTML redirects for aliases (#1680)

This commit is contained in:
Anton Bulakh
2024-12-27 16:18:22 +02:00
committed by GitHub
parent c91cf97f99
commit 99011cb1b0
3 changed files with 23 additions and 2 deletions

View File

@ -1,5 +1,6 @@
import { computePosition, flip, inline, shift } from "@floating-ui/dom"
import { normalizeRelativeURLs } from "../../util/path"
import { fetchCanonical } from "./util"
const p = new DOMParser()
async function mouseEnterHandler(
@ -37,7 +38,7 @@ async function mouseEnterHandler(
targetUrl.hash = ""
targetUrl.search = ""
const response = await fetch(`${targetUrl}`).catch((err) => {
const response = await fetchCanonical(targetUrl).catch((err) => {
console.error(err)
})