Skip to content

Commit 263860a

Browse files
committed
chore: linting
1 parent 078fe16 commit 263860a

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

packages/static-hosting/lib/static-hosting.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -594,11 +594,15 @@ export class StaticHosting extends Construct {
594594
}
595595
);
596596

597-
const responseFunction = new ResponseFunction(this, `CSPFunction-${path}`, {
598-
bucket: `${props.subDomainName}.${props.domainName}`,
599-
reportUri: reportUri,
600-
fallbackCsp: fallbackCsp,
601-
});
597+
const responseFunction = new ResponseFunction(
598+
this,
599+
`CSPFunction-${path}`,
600+
{
601+
bucket: `${props.subDomainName}.${props.domainName}`,
602+
reportUri: reportUri,
603+
fallbackCsp: fallbackCsp,
604+
}
605+
);
602606
this.bucket.grantRead(responseFunction.edgeFunction);
603607

604608
const remap: remapPath = {

0 commit comments

Comments
 (0)