sst 2.0.26 → 2.0.27

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.
@@ -235,7 +235,9 @@ export class NextjsSite extends SsrSite {
235
235
  // required by image optimization request
236
236
  "accept",
237
237
  // required by server request
238
- "x-op-middleware-request-headers", "x-op-middleware-response-headers", "x-nextjs-data", "x-middleware-prefetch"),
238
+ "x-op-middleware-request-headers", "x-op-middleware-response-headers", "x-nextjs-data", "x-middleware-prefetch",
239
+ // required by server request (in-place routing)
240
+ "rsc", "next-router-prefetch", "next-router-state-tree"),
239
241
  cookieBehavior: cloudfront.CacheCookieBehavior.all(),
240
242
  defaultTtl: CdkDuration.days(0),
241
243
  maxTtl: CdkDuration.days(365),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sst",
3
- "version": "2.0.26",
3
+ "version": "2.0.27",
4
4
  "bin": {
5
5
  "sst": "cli/sst.js"
6
6
  },