Update launch.json to modify memory-gc strategy and comment out upstream server configuration

- Changed memory-gc strategy from 'lfu' to 'lru' for improved cache management.
- Commented out the upstream server configuration to prevent potential connectivity issues during development.
This commit is contained in:
2025-07-19 08:07:36 -05:00
parent 30e804709f
commit f6f93c86c8

6
.vscode/launch.json vendored
View File

@@ -56,11 +56,11 @@
"--memory",
"1G",
"--memory-gc",
"lfu",
"lru",
"--log-level",
"debug",
"--upstream",
"http://192.168.2.5:80",
// "--upstream",
// "http://192.168.2.5:80",
],
}
]