Fix: subdirectory deployment (#2205)

This commit is contained in:
Isidro Osoria
2023-10-18 23:49:42 +08:00
committed by GitHub
parent 5f7891d8db
commit b8eda91005
20 changed files with 42 additions and 41 deletions

View File

@@ -2,7 +2,7 @@ import { MdRefresh } from "react-icons/md";
export default function Revalidate() {
const revalidate = () => {
fetch("/api/revalidate").then((res) => {
fetch("api/revalidate").then((res) => {
if (res.ok) {
window.location.reload();
}