9 lines
207 B
Plaintext
9 lines
207 B
Plaintext
export function denormalizeAppPagePath(page) {
|
|
// `/` is normalized to `/index`
|
|
if (page === "/index") {
|
|
return "/";
|
|
}
|
|
return page;
|
|
}
|
|
|
|
//# sourceMappingURL=denormalize-app-path.js.map |