43 lines
999 B
JSON
43 lines
999 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/nicehash/tauri/main/crates/tauri-cli/config.schema.json",
|
|
"productName": "QRGen",
|
|
"version": "0.1.0",
|
|
"identifier": "com.liuhangyu.qrgen",
|
|
"build": {
|
|
"frontendDist": "src-frontend/dist",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeDevCommand": "cd src-frontend && pnpm dev",
|
|
"beforeBuildCommand": "cd src-frontend && pnpm build"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"title": "QRGen - QR 码生成器",
|
|
"width": 900,
|
|
"height": 650,
|
|
"minWidth": 900,
|
|
"minHeight": 650,
|
|
"resizable": true,
|
|
"decorations": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"plugins": {},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "nsis",
|
|
"resources": ["WebView2Loader.dll"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|