Files
skymap-gen/src-tauri/tauri.conf.json

57 lines
1.1 KiB
JSON

{
"package": {
"productName": "SkymapGen",
"version": "0.1.0"
},
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:5173",
"distDir": "../dist"
},
"tauri": {
"allowlist": {
"fs": {
"readFile": true,
"readDir": true,
"scope": ["**"]
},
"protocol": {
"asset": true,
"assetScope": ["**"]
}
},
"bundle": {
"active": true,
"targets": "app",
"identifier": "com.skymap.gen",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"../generate_equirect.py",
"../default.png",
"../configs",
"../output"
]
},
"windows": [
{
"label": "main",
"title": "Skymap Generator",
"fullscreen": false,
"resizable": true,
"width": 1280,
"height": 720
}
],
"security": {
"csp": null
}
}
}