Created
October 14, 2025 13:29
-
-
Save Chino-chan/1b93632337538da6c38aca0fa66f38cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://schema.tauri.app/config/2", | |
| "productName": "myApp", | |
| "version": "0.1.0", | |
| "identifier": "com.rikaplease.myApp", | |
| "build": { | |
| "frontendDist": "../src" | |
| }, | |
| "app": { | |
| "withGlobalTauri": true, | |
| "windows": [ | |
| { | |
| "title": "myApp", | |
| "width": 800, | |
| "height": 600 | |
| } | |
| ], | |
| "security": { | |
| "csp": null | |
| } | |
| }, | |
| "bundle": { | |
| "active": true, | |
| "targets": "all", | |
| "icon": [ | |
| "icons/32x32.png", | |
| "icons/128x128.png", | |
| "icons/[email protected]", | |
| "icons/icon.icns", | |
| "icons/icon.ico" | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment