Files
cstb-next/src-tauri/tauri.conf.json
2024-09-20 10:14:36 +08:00

70 lines
1.5 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "pnpm next-build",
"beforeDevCommand": "pnpm next-start",
"frontendDist": "../out",
"devUrl": "http://localhost:3000"
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"targets": "all",
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
},
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"linux": {
"deb": {
"depends": []
}
}
},
"productName": "tauri-nextjs-template",
"mainBinaryName": "tauri-nextjs-template",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"plugins": {},
"app": {
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "CS Toolbox",
"width": 976,
"height": 720,
"minWidth": 600,
"minHeight": 480,
"decorations": false,
"transparent": true,
"theme": "Light",
"hiddenTitle": true,
"titleBarStyle": "Overlay"
}
],
"security": {
"csp": null
}
}
}