Files
dm-pal/src-tauri/tauri.conf.json
T
2026-08-04 17:15:32 +01:00

44 lines
920 B
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "DM-Pal",
"version": "0.1.1",
"identifier": "com.dm-pal.app",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "DM-Pal",
"width": 1280,
"height": 800,
"minWidth": 900,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": true
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"macOS": {
"signingIdentity": "-",
"hardenedRuntime": true
},
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}