- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
8 lines
433 B
JavaScript
8 lines
433 B
JavaScript
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
|