diff --git a/src/constructs/aws/SinglePageApp.ts b/src/constructs/aws/SinglePageApp.ts index e2dc663d..e11079ba 100644 --- a/src/constructs/aws/SinglePageApp.ts +++ b/src/constructs/aws/SinglePageApp.ts @@ -43,9 +43,9 @@ export class SinglePageApp extends StaticWebsiteAbstract { * let static files pass. * * Files extensions list taken from: https://docs.aws.amazon.com/amplify/latest/userguide/redirects.html#redirects-for-single-page-web-apps-spa - * Add pdf, xml and webmanifest as well + * Add pdf, xml, webmanifest and avif as well */ - const code = `var REDIRECT_REGEX = /^[^.]+$|\\.(?!(css|gif|ico|jpg|jpeg|js|png|txt|svg|woff|woff2|ttf|map|json|xml|pdf|webmanifest)$)([^.]+$)/; + const code = `var REDIRECT_REGEX = /^[^.]+$|\\.(?!(css|gif|ico|jpg|jpeg|js|png|txt|svg|woff|woff2|ttf|map|json|webp|xml|pdf|webmanifest|avif)$)([^.]+$)/; function handler(event) { var uri = event.request.uri; diff --git a/test/unit/singlePageApp.test.ts b/test/unit/singlePageApp.test.ts index a9590950..7c602205 100644 --- a/test/unit/singlePageApp.test.ts +++ b/test/unit/singlePageApp.test.ts @@ -29,7 +29,7 @@ describe("single page app", () => { Object { "Properties": Object { "AutoPublish": true, - "FunctionCode": "var REDIRECT_REGEX = /^[^.]+$|\\\\.(?!(css|gif|ico|jpg|jpeg|js|png|txt|svg|woff|woff2|ttf|map|json|xml|pdf|webmanifest)$)([^.]+$)/; + "FunctionCode": "var REDIRECT_REGEX = /^[^.]+$|\\\\.(?!(css|gif|ico|jpg|jpeg|js|png|txt|svg|woff|woff2|ttf|map|json|webp|xml|pdf|webmanifest|avif)$)([^.]+$)/; function handler(event) { var uri = event.request.uri; @@ -99,7 +99,7 @@ describe("single page app", () => { }); const requestFunction = computeLogicalId("landing", "RequestFunction"); expect(cfTemplate.Resources[requestFunction].Properties.FunctionCode).toMatchInlineSnapshot(` - "var REDIRECT_REGEX = /^[^.]+$|\\\\.(?!(css|gif|ico|jpg|jpeg|js|png|txt|svg|woff|woff2|ttf|map|json|xml|pdf|webmanifest)$)([^.]+$)/; + "var REDIRECT_REGEX = /^[^.]+$|\\\\.(?!(css|gif|ico|jpg|jpeg|js|png|txt|svg|woff|woff2|ttf|map|json|webp|xml|pdf|webmanifest|avif)$)([^.]+$)/; function handler(event) { var uri = event.request.uri;