init
This commit is contained in:
commit
31c9c600b0
59 changed files with 47825 additions and 0 deletions
40
src-tauri/tauri.conf.json
Normal file
40
src-tauri/tauri.conf.json
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"productName": "FastWave",
|
||||
"version": "0.1.0",
|
||||
"identifier": "com.fastwave",
|
||||
"build": {
|
||||
"frontendDist": "../frontend_dist",
|
||||
"devUrl": "http://localhost:8080",
|
||||
"beforeDevCommand": "makers mzoon start",
|
||||
"beforeBuildCommand": "makers mzoon build -r -f"
|
||||
},
|
||||
"app": {
|
||||
"macOSPrivateApi": true,
|
||||
"withGlobalTauri": true,
|
||||
"windows": [
|
||||
{
|
||||
"title": "FastWave",
|
||||
"width": 800,
|
||||
"height": 600,
|
||||
"resizable": true,
|
||||
"fullscreen": false,
|
||||
"center": true,
|
||||
"visible": false
|
||||
}
|
||||
],
|
||||
"security": {
|
||||
"csp": null
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": "all",
|
||||
"icon": [
|
||||
"icons/32x32.png",
|
||||
"icons/128x128.png",
|
||||
"icons/128x128@2x.png",
|
||||
"icons/icon.icns",
|
||||
"icons/icon.ico"
|
||||
]
|
||||
}
|
||||
}
|
Reference in a new issue