12345678910111213141516171819202122232425262728293031323334 |
- {
- "$schema": "../../crates/tauri-schema-generator/schemas/config.schema.json",
- "productName": "RunIteration",
- "version": "0.1.0",
- "identifier": "com.tauri.dev",
- "build": {
- "frontendDist": ["index.html"]
- },
- "app": {
- "windows": [
- {
- "title": "Welcome to Tauri!",
- "width": 800,
- "height": 600,
- "resizable": true,
- "fullscreen": false
- }
- ],
- "security": {
- "csp": "default-src 'self'; connect-src ipc: http://ipc.localhost"
- }
- },
- "bundle": {
- "active": true,
- "targets": "all",
- "icon": [
- "../.icons/32x32.png",
- "../.icons/128x128.png",
- "../.icons/128x128@2x.png",
- "../.icons/icon.icns",
- "../.icons/icon.ico"
- ]
- }
- }
|