sirius-press/wordpress/wp-includes/build/routes/fonts-home/route.js

14 lines
209 B
JavaScript
Raw Normal View History

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