42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Snake POC Tauri",
|
|
"identifier": "com.sasedev.games.snake.tauri",
|
|
"build": {
|
|
"beforeDevCommand": {
|
|
"script": "npm run dev",
|
|
"cwd": "."
|
|
},
|
|
"devUrl": "http://localhost:1436",
|
|
"beforeBuildCommand": {
|
|
"script": "npm run build",
|
|
"cwd": "."
|
|
},
|
|
"frontendDist": "../../../../builds/sasedev-games/game-snake-poc-tauri/dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"url": "main.html",
|
|
"title": "Snake POC Tauri",
|
|
"width": 405,
|
|
"height": 720,
|
|
"minWidth": 320,
|
|
"minHeight": 480,
|
|
"resizable": true,
|
|
"center": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": false,
|
|
"icon": [
|
|
"icons/icon.png"
|
|
]
|
|
}
|
|
}
|