@ampless/runtime 1.0.0-beta.64 → 1.0.0-beta.66

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.
@@ -113,9 +113,10 @@ function createStaticRouteHandler(ampless) {
113
113
  if (restSegments.length === 0) {
114
114
  const url = new URL(request.url);
115
115
  if (!url.pathname.endsWith("/")) {
116
- const next = new URL(url);
117
- next.pathname = `${url.pathname}/`;
118
- return Response.redirect(next.toString(), 308);
116
+ return new Response(null, {
117
+ status: 308,
118
+ headers: { Location: `${url.pathname}/${url.search}` }
119
+ });
119
120
  }
120
121
  const body2 = post.body ?? null;
121
122
  const entrypoint = typeof body2?.entrypoint === "string" && body2.entrypoint ? body2.entrypoint : "index.html";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampless/runtime",
3
- "version": "1.0.0-beta.64",
3
+ "version": "1.0.0-beta.66",
4
4
  "description": "Public-side runtime for ampless: post fetching, theme dispatch, middleware, public route handlers",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -51,8 +51,8 @@
51
51
  "marked": "^18.0.4",
52
52
  "sanitize-html": "^2.17.4",
53
53
  "tailwind-merge": "^3.6.0",
54
- "@ampless/plugin-og-image": "0.2.0-beta.53",
55
- "ampless": "1.0.0-beta.53"
54
+ "@ampless/plugin-og-image": "0.2.0-beta.54",
55
+ "ampless": "1.0.0-beta.54"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "@aws-amplify/adapter-nextjs": "^1",