rypi-scrapper/src-tauri/tauri.conf.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2023-04-06 16:18:26 +02:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
2023-04-06 16:18:26 +02:00
"package": {
"productName": "rypi-scrapper",
"version": "0.0.0"
},
"tauri": {
"allowlist": {
"window": {
"close": true,
"minimize": true,
"startDragging": true
2023-04-06 16:18:26 +02:00
},
"os": {
"all": false
},
"fs": {
"createDir": true,
"exists": true,
"readDir": true,
"removeDir": true,
2023-04-06 16:18:26 +02:00
"writeFile": true,
"scope": ["$DOWNLOAD/**/*"]
},
"path": {
"all": true
},
2023-04-06 16:18:26 +02:00
"http": {
"all": true,
"request": true,
"scope": ["https://www.habbo.*/*", "https://images.habbo.*/*"]
}
},
"bundle": {
"active": true,
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
"identifier": "org.rypi.dev",
2023-04-06 16:18:26 +02:00
"targets": "all"
},
"security": {
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
2023-04-06 16:18:26 +02:00
},
"updater": {
"active": false
},
"windows": [
{
"decorations": false,
"resizable": false,
2023-04-06 16:18:26 +02:00
"center": true,
"width": 1000,
"height": 575
2023-04-06 16:18:26 +02:00
}
]
}
}