File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ By default the `awsProxy` is set to `AWSProxy.APIGatewayV2`.
5252- ` AWSProxy.APIGatewayV1 `
5353- ` AWSProxy.APIGatewayV2 `
5454- ` AWSProxy.ALB `
55+ - ` AWSProxy.FunctionURL `
5556
5657## Notes
5758
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ const createRemixAdapter = (awsProxy: AWSProxy): ApiGatewayV1Adapter | ApiGatewa
2626 case AWSProxy . APIGatewayV1 :
2727 return apiGatewayV1Adapter
2828 case AWSProxy . APIGatewayV2 :
29+ case AWSProxy . FunctionURL :
2930 return apiGatewayV2Adapter
3031 case AWSProxy . ALB :
3132 return applicationLoadBalancerAdapter
Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ import { createRemixAdapter } from './adapters'
2020export enum AWSProxy {
2121 APIGatewayV1 = 'APIGatewayV1' ,
2222 APIGatewayV2 = 'APIGatewayV2' ,
23- ALB = 'ALB'
23+ ALB = 'ALB' ,
24+ FunctionURL = 'FunctionURL'
2425}
2526
2627/**
You can’t perform that action at this time.
0 commit comments