From 7b0c190454f7d141ec3507e7991ba74dea3e7bb7 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 9 Aug 2022 21:48:23 +0200 Subject: [PATCH] docs: export route config in routing chapter (#604) --- docs/concepts/routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/routing.md b/docs/concepts/routing.md index 325625bf42e..3d43cdd639b 100644 --- a/docs/concepts/routing.md +++ b/docs/concepts/routing.md @@ -46,7 +46,7 @@ This pattern will be used instead of the file path based pattern: import { RouteConfig } from "$fresh/runtime.ts"; -const config: RouteConfig = { +export const config: RouteConfig = { routeOverride: "/x/:module@:version/:path*", };