file-tree/src-tauri/tauri.conf.json

65 lines
1.4 KiB
JSON
Raw Normal View History

2025-02-22 02:05:17 -05:00
{
"$schema": "..\\node_modules/@tauri-apps/cli\\schema.json",
"build": {
"beforeBuildCommand": "npm run next-build",
"beforeDevCommand": "npm run next dev",
"frontendDist": "../dist",
"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": "nextauri",
"mainBinaryName": "nextauri",
"version": "0.1.0",
"identifier": "com.nextauri.dev",
"plugins": {},
"app": {
"windows": [
{
"transparent": false,
"decorations": true,
"fullscreen": false,
"height": 600,
2025-02-22 06:08:44 -05:00
"resizable": false,
"title": "File Tree by d4m13n.dev",
2025-02-22 02:05:17 -05:00
"width": 800,
"useHttpsScheme": true
}
],
"security": {
"csp": null
}
}
}