You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
433 B
8 lines
433 B
|
2 months ago
|
import { addPathPrefix } from "../shared/lib/router/utils/add-path-prefix";
|
||
|
|
import { normalizePathTrailingSlash } from "./normalize-trailing-slash";
|
||
|
|
const basePath = process.env.__NEXT_ROUTER_BASEPATH || "";
|
||
|
|
export function addBasePath(path, required) {
|
||
|
|
return normalizePathTrailingSlash(process.env.__NEXT_MANUAL_CLIENT_BASE_PATH && !required ? path : addPathPrefix(path, basePath));
|
||
|
|
}
|
||
|
|
|
||
|
|
//# sourceMappingURL=add-base-path.js.map
|