queryが存在するURLも短くする

This commit is contained in:
Nebel 2023-04-13 11:02:51 +09:00
parent ca7340747b
commit 9cffd9ba3d

View file

@ -4,6 +4,5 @@
"use strict";
const { pathname } = window.location;
const dp = pathname.match(/(?<=\/(?:dp|gp\/product)\/)\w*/)?.[0];
const to = dp && `/dp/${dp}`;
if (to && pathname !== to) window.history.replaceState(null, "", to);
const dp = pathname.match(/(?<=\/dp\/|\/gp\/product\/)\w*/)?.[0];
if (dp) window.history.replaceState(null, "", `/dp/${dp}`);