fix: 修复本地证书目录和实际读取目录不一致

This commit is contained in:
王立帮
2025-05-23 15:44:55 +08:00
parent e0a9c14e93
commit 4cc4658ffb

View File

@@ -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;