Extract anyclip
This commit is contained in:
12
client/add-base-path.ts
Normal file
12
client/add-base-path.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { addPathPrefix } from '../shared/lib/router/utils/add-path-prefix'
|
||||
import { normalizePathTrailingSlash } from './normalize-trailing-slash'
|
||||
|
||||
const basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || ''
|
||||
|
||||
export function addBasePath(path: string, required?: boolean): string {
|
||||
return normalizePathTrailingSlash(
|
||||
process.env.__NEXT_MANUAL_CLIENT_BASE_PATH && !required
|
||||
? path
|
||||
: addPathPrefix(path, basePath)
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user