compressO/src-tauri/tauri.conf.json

71 lines
1.8 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "CompressO",
"version": "1.2.0",
"identifier": "com.compresso.app",
"build": {
"beforeBuildCommand": "pnpm vite:build",
"frontendDist": "../dist",
"devUrl": "http://localhost:3001"
},
"bundle": {
"longDescription": "Compress any video file to a tiny size.",
"shortDescription": "Compress any video to a tiny size",
"active": true,
"category": "DeveloperTool",
"copyright": "Code For Real",
"targets": ["deb", "appimage", "msi", "dmg"],
"externalBin": ["./bin/compresso_ffmpeg"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
},
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"linux": {
"deb": {
"depends": []
}
}
},
"plugins": {},
"app": {
"windows": [
{
"fullscreen": false,
"height": 992,
"width": 1280,
"minWidth": 1080,
"minHeight": 800,
"resizable": true,
"title": "",
"hiddenTitle": true
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' asset: http://asset.localhost asset: https://asset.localhost; style-src 'unsafe-inline' 'self'; connect-src 'self' ipc: http://ipc.localhost ipc: https://ipc.localhost",
"dangerousDisableAssetCspModification": ["style-src"],
"assetProtocol": {
"enable": true,
"scope": {
"allow": ["$APPDATA/**"],
"requireLiteralLeadingDot": false
}
}
}
}
}