8a8b873642
- 配置开发环境以禁用缓存并启用持久化,确保开发服务器和Vite服务在运行时保持持续状态。
28 lines
540 B
JSON
28 lines
540 B
JSON
{
|
|
"$schema": "./node_modules/turbo/schema.json",
|
|
"dangerouslyDisablePackageManagerCheck": true,
|
|
"tasks": {
|
|
"build:compile": {
|
|
"dependsOn": ["build:vite"]
|
|
},
|
|
"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"
|
|
}
|