From b0e596ed953454f728790fa0f2b08a32ea15ef17 Mon Sep 17 00:00:00 2001 From: Romain Gautier Date: Fri, 10 Nov 2023 20:47:12 +0000 Subject: [PATCH] set arm as default architecture --- src/function/defaults.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/function/defaults.ts b/src/function/defaults.ts index f160acc..e71f13f 100644 --- a/src/function/defaults.ts +++ b/src/function/defaults.ts @@ -6,7 +6,7 @@ export const functionDefaults = { path: process.cwd(), phpVersion: '8.1', memorySize: 1024, - architecture: Architecture.X86_64, + architecture: Architecture.ARM_64, excludedPhpPaths: ['.git', '.idea', 'cdk.out', 'node_modules', '.bref', '.serverless', 'tests'], } as const;