(opts: {
routerBasepath: string
serverFnBase: string
})
| 83 | } |
| 84 | |
| 85 | export function createServerFnBasePath(opts: { |
| 86 | routerBasepath: string |
| 87 | serverFnBase: string |
| 88 | }): string { |
| 89 | return joinPaths(['/', opts.routerBasepath, opts.serverFnBase, '/']) |
| 90 | } |
| 91 | |
| 92 | export function resolveStartEntryPlan(opts: { |
| 93 | root: string |