Tauri 配置
这些文件包括 、 和 。 默认情况下是 。 请参阅下方的备注以了解详情。
tauri.conf.json
package.json
Cargo.toml
tauri.conf.json
这是 Tauri 进程所使用的文件。 您可以定义构建设置(例如在tauri build
或tauri dev
之前运行的命令),设置应用程序的名称和版本,控制tauri进程,并配置任何插件设置。您可以在 tauri.conf.json
API 参考中查阅所有的选项。
Tauri 配置的默认格式为 。 对 或 格式的支持可通过在 的 和 依赖中分别添加 或 的方式开启。 请注意,仅 Tauri 1.1 及更高版本支持 格式。.json
.json5
.toml
Cargo.toml
tauri
tauri-build
config-json5
config-toml
.toml
Cargo.toml
[build-dependencies]
tauri-build = { version = "1.0.0", features = [ "config-json5" ] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.0.0", features = [ "api-all", "config-json5" ] }
所有格式的结构和值都是相同的,但是,格式应与相应文件的格式一致。