Skip to content

Commit a73ba2b

Browse files
authored
Merge pull request #7528 from yueny2020/nodememory
fix(amazonq): increase node memory size to 8G
2 parents b9a5a94 + d8005c7 commit a73ba2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/shared/lsp/utils/platform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export function createServerOptions({
9696
}) {
9797
return async () => {
9898
const bin = executable[0]
99-
const args = [...executable.slice(1), serverModule, ...execArgv]
99+
const args = [...executable.slice(1), '--max-old-space-size=8196', serverModule, ...execArgv]
100100
if (isDebugInstance()) {
101101
args.unshift('--inspect=6080')
102102
}

0 commit comments

Comments
 (0)