import { RouteConfig } from "$fresh/server.ts"; export const config: RouteConfig = { routeOverride: "/route-override-example", }; export default function AboutPage() { return (

RouteConfigExample

This is the RouteConfigExample page. It should only be accessible from /route-override-example

); }