Skip to content

Commit

Permalink
append
Browse files Browse the repository at this point in the history
  • Loading branch information
southpolesteve committed Feb 3, 2025
1 parent 6eb9e99 commit f9e7b8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wrangler/src/deploy/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,9 @@ export const validateRoutes = (routes: Route[], assets?: AssetsOptions) => {
export function renderRoute(route: Route): string {
let result = "https://";
if (typeof route === "string") {
result = route;
result += route;
} else {
result = route.pattern;
result += route.pattern;
const isCustomDomain = Boolean(
"custom_domain" in route && route.custom_domain
);
Expand Down

0 comments on commit f9e7b8b

Please sign in to comment.