mxivideo/src-tauri/tauri.conf.json

54 lines
1.6 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "MixVideo V2",
"version": "2.0.0",
"identifier": "com.mixvideo.app",
"build": {
"frontendDist": "../build",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build"
},
"app": {
"windows": [
{
"title": "MixVideo V2 - 视频混剪软件",
"width": 1400,
"height": 900,
"minWidth": 1200,
"minHeight": 700,
"resizable": true,
"fullscreen": false,
"decorations": false,
"transparent": false,
"center": true
}
],
"security": {
"csp": "default-src 'self'; img-src 'self' asset: data: http://asset.localhost; media-src 'self' asset: http://asset.localhost; video-src 'self' asset: http://asset.localhost; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; connect-src 'self' ipc: http://ipc.localhost",
"assetProtocol": {
"enable": true,
"scope": [
"**/**",
"$HOME/.mixvideo/**/**"
]
},
"freezePrototype": true
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"category": "Video",
"shortDescription": "Professional video editing software",
"longDescription": "MixVideo V2 is a modern video editing software built with Tauri and Python, featuring professional editing tools, AI-assisted editing, and advanced audio processing capabilities."
}
}