/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/server/normalizers/request
NameSizeModeActions
base-path.d.ts2680666editdlrm
base-path.js7510666editdlrm
base-path.js.map8760666editdlrm
next-data.d.ts3370666editdlrm
next-data.js14050666editdlrm
next-data.js.map21150666editdlrm
pathname-normalizer.d.ts2060666editdlrm
pathname-normalizer.js1290666editdlrm
pathname-normalizer.js.map670666editdlrm
prefetch-rsc.d.ts3530666editdlrm
prefetch-rsc.js9030666editdlrm
prefetch-rsc.js.map13590666editdlrm
prefix.d.ts2810666editdlrm
prefix.js12510666editdlrm
prefix.js.map18200666editdlrm
rsc.d.ts2470666editdlrm
rsc.js4900666editdlrm
rsc.js.map6540666editdlrm
segment-prefix-rsc.d.ts3440666editdlrm
segment-prefix-rsc.js9490666editdlrm
segment-prefix-rsc.js.map15960666editdlrm
suffix.d.ts2810666editdlrm
suffix.js8070666editdlrm
suffix.js.map12890666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/server/normalizers/request/prefix.js (1251B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "PrefixPathnameNormalizer", { enumerable: true, get: function() { return PrefixPathnameNormalizer; } }); class PrefixPathnameNormalizer { constructor(prefix){ this.prefix = prefix; if (prefix.endsWith('/')) { throw Object.defineProperty(new Error(`PrefixPathnameNormalizer: prefix "${prefix}" should not end with a slash`), "__NEXT_ERROR_CODE", { value: "E219", enumerable: false, configurable: true }); } } match(pathname) { // If the pathname doesn't start with the prefix, we don't match. if (pathname !== this.prefix && !pathname.startsWith(this.prefix + '/')) { return false; } return true; } normalize(pathname, matched) { // If we're not matched and we don't match, we don't need to normalize. if (!matched && !this.match(pathname)) return pathname; if (pathname.length === this.prefix.length) { return '/'; } return pathname.substring(this.prefix.length); } } //# sourceMappingURL=prefix.js.map