From 8a8b873642974c7e0c02029d2439ff2890d8de2c Mon Sep 17 00:00:00 2001 From: imbytecat Date: Sun, 18 Jan 2026 16:59:45 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=85=8D=E7=BD=AE=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E7=8E=AF=E5=A2=83=E7=A6=81=E7=94=A8=E7=BC=93=E5=AD=98=E5=B9=B6?= =?UTF-8?q?=E5=90=AF=E7=94=A8=E6=8C=81=E4=B9=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 配置开发环境以禁用缓存并启用持久化,确保开发服务器和Vite服务在运行时保持持续状态。 --- turbo.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/turbo.json b/turbo.json index 0a30b97..1770726 100644 --- a/turbo.json +++ b/turbo.json @@ -8,11 +8,19 @@ "build:tauri": { "dependsOn": ["build:compile"] }, + "dev": { + "cache": false, + "persistent": true + }, "dev:tauri": { "cache": false, "dependsOn": ["build:compile"], "persistent": true, "with": ["dev:vite"] + }, + "dev:vite": { + "cache": false, + "persistent": true } }, "ui": "tui"