@syntrologie/runtime-sdk 2.8.0-canary.131 → 2.8.0-canary.132

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.
@@ -3639,7 +3639,7 @@ function getAntiFlickerSnippet(config = {}) {
3639
3639
  }
3640
3640
 
3641
3641
  // src/version.ts
3642
- var SDK_VERSION = "2.8.0-canary.131";
3642
+ var SDK_VERSION = "2.8.0-canary.132";
3643
3643
 
3644
3644
  // src/types.ts
3645
3645
  var SDK_SCHEMA_VERSION = "2.0";
@@ -9291,6 +9291,7 @@ function matchRoute(url, routes) {
9291
9291
  } catch {
9292
9292
  pathname = url;
9293
9293
  }
9294
+ if (!pathname.startsWith("/")) pathname = `/${pathname}`;
9294
9295
  if (routes.exclude) {
9295
9296
  for (const pattern of routes.exclude) {
9296
9297
  if (matchPattern(pathname, pattern)) {
@@ -11446,6 +11447,7 @@ function matchesRouteFilter(url, filter) {
11446
11447
  } catch {
11447
11448
  pathname = url;
11448
11449
  }
11450
+ if (!pathname.startsWith("/")) pathname = `/${pathname}`;
11449
11451
  const normalizedPath = pathname.replace(/\/$/, "") || "/";
11450
11452
  if (filter.exclude) {
11451
11453
  for (const pattern of filter.exclude) {
@@ -12719,4 +12721,4 @@ export {
12719
12721
  encodeToken,
12720
12722
  Syntro
12721
12723
  };
12722
- //# sourceMappingURL=chunk-M2FFM5IV.js.map
12724
+ //# sourceMappingURL=chunk-UBL32CQ2.js.map