Skip to content

Commit

Permalink
fix comment errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Park committed Nov 15, 2023
1 parent f7bdb70 commit c3a0ee3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface PrerenderFargateOptions {
enableS3Endpoint?: boolean;
/**
* Read Prerender token-URL associations from a pre-defined AWS SSM Parameter, which is the the preferred way of token-URL association.
* Mutually exclusive with tokenUrlSSMParameter.
* Mutually exclusive with tokenUrlAssociation.
* Either one of tokenList, tokenUrlSSMParameter, or tokenUrlAssociation must be specified.
* ### SSM Parameter Example:
* ```
Expand Down
23 changes: 12 additions & 11 deletions packages/prerender-fargate/lib/prerender-fargate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,18 @@ import { PrerenderFargateOptions } from "./prerender-fargate-options";
* maxInstanceCount: 2,
* enableS3Endpoint: true,
* tokenUrlAssociation: {
* token1: [
* "https://example.com",
* "https://acme.example.com"
* ],
* token2: [
* "https://example1.com",
* "https://acme.example1.com"
* ]
* },
* ssmPathPrefix: "/prerender/recache/tokens"
* }
* tokenUrlAssociation: {
* token1: [
* "https://example.com",
* "https://acme.example.com"
* ],
* token2: [
* "https://example1.com",
* "https://acme.example1.com"
* ]
* },
* ssmPathPrefix: "/prerender/recache/tokens"
* }
* });
* ```
*
Expand Down

0 comments on commit c3a0ee3

Please sign in to comment.