@next-core/brick-kit 2.208.4 → 2.208.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.bundle.js +1 -1
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -12505,7 +12505,7 @@ class Router {
|
|
|
12505
12505
|
} else {
|
|
12506
12506
|
path = path.replace(/^\/next\//, "/");
|
|
12507
12507
|
}
|
|
12508
|
-
path && addPathToBlackList(path);
|
|
12508
|
+
path && path.startsWith("/") && addPathToBlackList(path);
|
|
12509
12509
|
});
|
|
12510
12510
|
if (isBlockedPath(location.pathname)) {
|
|
12511
12511
|
blocked = true;
|