mirror of
https://github.com/nimbold/Firelink.git
synced 2026-07-26 12:08:27 +00:00
1f1ec828f9
Bundle optional Inter and Outfit families, preserve the platform system default, and provide script-aware fallbacks for every supported locale. Refs #31
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Firelink",
|
|
"version": "1.2.0",
|
|
"identifier": "com.nimbold.firelink",
|
|
"build": {
|
|
"beforeDevCommand": "node scripts/stage-engines.js && npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "node scripts/before-tauri-build.js",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"macOSPrivateApi": true,
|
|
"windows": [
|
|
{
|
|
"create": false,
|
|
"title": "Firelink",
|
|
"width": 1280,
|
|
"height": 760,
|
|
"minWidth": 960,
|
|
"minHeight": 640,
|
|
"transparent": false
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; img-src 'self' data: https:; script-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self'; connect-src 'self' ws://localhost:* http://localhost:* http://127.0.0.1:* ws://127.0.0.1:*"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"resources": {
|
|
"engine-dist/": "engine-dist/",
|
|
"../THIRD_PARTY_NOTICES.md": "THIRD_PARTY_NOTICES.md"
|
|
}
|
|
},
|
|
"plugins": {
|
|
"deep-link": {
|
|
"desktop": {
|
|
"schemes": ["firelink"]
|
|
}
|
|
}
|
|
}
|
|
}
|