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 micromorph from "micromorph"
import { FullSlug, RelativeURL, getFullSlug, normalizeRelativeURLs } from "../../util/path"
import { fetchCanonical } from "./util"
// adapted from `micromorph`
// https://github.com/natemoo-re/micromorph
@ -59,7 +60,7 @@ let p: DOMParser
async function navigate(url: URL, isBack: boolean = false) {
startLoading()
p = p || new DOMParser()
const contents = await fetch(`${url}`)
const contents = await fetchCanonical(url)
.then((res) => {
const contentType = res.headers.get("content-type")
if (contentType?.startsWith("text/html")) {