mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-07 05:43:01 +08:00
46 lines
963 B
JSON
46 lines
963 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"productName": "BiliNote",
|
|
"version": "0.1.0",
|
|
"identifier": "com.jefferyhuang.bilinote",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:3015",
|
|
"beforeDevCommand": "pnpm dev",
|
|
"beforeBuildCommand": "pnpm build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "BiliNote",
|
|
"width": 1400,
|
|
"height": 900,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"devtools": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"externalBin": [
|
|
"bin/BiliNoteBackend/BiliNoteBackend"
|
|
],
|
|
"resources": {
|
|
"bin/BiliNoteBackend/_internal":"_internal"
|
|
},
|
|
"macOS":{
|
|
"files": {
|
|
"Frameworks": "bin/BiliNoteBackend/_internal"
|
|
}
|
|
},
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/icon.ico",
|
|
"icons/icon.png"
|
|
]
|
|
}
|
|
} |