### PakePlus Configuration Example Source: https://ppofficial.netlify.app/guide/superman This JSON object shows the configuration parameters for a PakePlus project, including display names, version, IDs, web URLs, icon paths, and various feature flags. ```json { "name": "english_name", "showName": "Display Name", "version": "1.0.0", "id": "com.unique.id.app", "desc": "Project description", "webUrl": "index.html", "iconPath": "../../app-icon.png", "inputPath": "../../app-icon.png", "tempPath": "./processed-image.png", "icnsPath": "../../src-tauri/icons/icon.icns", "pubBody": "Release notes", "isHtml": true, "single": true/false, // Single-instance mode "state": true/false, // Window state persistence "injectJq": true/false, // jQuery injection "tauriApi": true/false, // Tauri API access "debug": true/false // Debug mode } ``` -------------------------------- ### Disable Web Security in Tauri Source: https://ppofficial.netlify.app/guide/tauri Add this browser argument to disable cross-origin restrictions in Tauri applications. This is enabled by default. ```bash --disable-web-security ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.