From 4cc4658ffb1204c0b117c3a21f5333f9b5231c4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E7=AB=8B=E5=B8=AE?= <3294713004@qq.com> Date: Fri, 23 May 2025 15:44:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=9C=AC=E5=9C=B0?= =?UTF-8?q?=E8=AF=81=E4=B9=A6=E7=9B=AE=E5=BD=95=E5=92=8C=E5=AE=9E=E9=99=85?= =?UTF-8?q?=E8=AF=BB=E5=8F=96=E7=9B=AE=E5=BD=95=E4=B8=8D=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.js b/src/common/config.js index bf58585c..e0621341 100644 --- a/src/common/config.js +++ b/src/common/config.js @@ -29,7 +29,7 @@ export const MICROPYTHON = processConfig(CONFIG.micropython); export const PYTHON = processConfig(CONFIG.python); export const CURRENT_PLANTFORM = os.platform(); export const TEMP_PATH = path.resolve(process.cwd(), CONFIG.server.path.temp); -export const CERTS_PATH = path.resolve(process.cwd(), 'certs'); +export const CERTS_PATH = path.resolve(process.cwd(), 'cert'); export const CLIENT_PORT = CONFIG.client.port; export const CLIENT_PATH = path.resolve(process.cwd(), CONFIG.client.path); export const CLIENT_PROTOCOL = CONFIG.client.protocol;