Skip to content

Commit

Permalink
Fixed routing function for table catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
davenquinn committed Nov 15, 2024
1 parent 19df878 commit e4d538e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pages/dev/map/layers/tables/+route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { PageContext } from "vike/types";

export function route(ctx: PageContext) {
if (!ctx.urlPathname.startsWith("/dev/map/layers/tables")) return false;
return {
precedence: 10,
};
}

0 comments on commit e4d538e

Please sign in to comment.