Files
hub-insurance/wp-includes/build/routes/fonts-home/route.js
T
2026-07-02 15:54:39 -06:00

14 lines
209 B
JavaScript

// routes/fonts-home/route.ts
import { redirect } from "@wordpress/route";
var route = {
beforeLoad: () => {
throw redirect({
throw: true,
to: "/font-list"
});
}
};
export {
route
};