Files
Roman Pyrih acb036dbd9 first commit
2026-05-21 15:33:11 +02: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
};