| { |
| "$schema": "../../../../crates/tauri-schema-generator/schemas/config.schema.json", |
| "identifier": "com.tauri.dev", |
| "build": { |
| "frontendDist": "../public", |
| "beforeDevCommand": "", |
| "beforeBuildCommand": "" |
| }, |
| "app": { |
| "withGlobalTauri": true, |
| "windows": [ |
| { |
| "title": "Welcome to Tauri!", |
| "width": 800, |
| "height": 600, |
| "resizable": true, |
| "fullscreen": false |
| } |
| ], |
| "security": { |
| "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self'; connect-src ipc: http://ipc.localhost" |
| } |
| }, |
| "bundle": { |
| "active": true, |
| "targets": "all", |
| "icon": [ |
| "../../../../examples/.icons/32x32.png", |
| "../../../../examples/.icons/128x128.png", |
| "../../../../examples/.icons/128x128@2x.png", |
| "../../../../examples/.icons/icon.icns", |
| "../../../../examples/.icons/icon.ico" |
| ] |
| } |
| } |
|
|