2023-07-17 00:34:43 +03:00
|
|
|
{
|
|
|
|
"$schema": "../../../tooling/cli/schema.json",
|
2024-02-03 06:39:48 +03:00
|
|
|
"identifier": "com.tauri.dev-file-associations-demo",
|
2023-07-17 00:34:43 +03:00
|
|
|
"build": {
|
2024-02-03 06:39:48 +03:00
|
|
|
"frontendDist": ["../index.html"]
|
2023-07-17 00:34:43 +03:00
|
|
|
},
|
2024-02-03 06:39:48 +03:00
|
|
|
"app": {
|
2023-07-17 00:34:43 +03:00
|
|
|
"security": {
|
|
|
|
"csp": "default-src 'self'"
|
|
|
|
}
|
2024-02-03 06:39:48 +03:00
|
|
|
},
|
|
|
|
"bundle": {
|
|
|
|
"active": true,
|
|
|
|
"targets": "all",
|
|
|
|
"icon": [
|
|
|
|
"../../.icons/32x32.png",
|
|
|
|
"../../.icons/128x128.png",
|
|
|
|
"../../.icons/128x128@2x.png",
|
|
|
|
"../../.icons/icon.icns",
|
|
|
|
"../../.icons/icon.ico"
|
|
|
|
],
|
|
|
|
"fileAssociations": [
|
|
|
|
{
|
|
|
|
"ext": ["png"],
|
|
|
|
"mimeType": "image/png"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ext": ["jpg", "jpeg"],
|
|
|
|
"mimeType": "image/jpeg"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"ext": ["gif"],
|
|
|
|
"mimeType": "image/gif"
|
|
|
|
}
|
|
|
|
]
|
2023-07-17 00:34:43 +03:00
|
|
|
}
|
|
|
|
}
|