0.1.0-1-alpha.2-fix.2

This commit is contained in:
2026-09-17 00:25:37 +02:00
parent f8b93050d8
commit 37a00b3c2b
35 changed files with 620 additions and 181 deletions

View File

@@ -1,14 +1,24 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Reflex POC Tauri",
"version": "0.1.0-1-alpha.2.fix.1",
"version": "0.1.0-1-alpha.2.fix.2",
"identifier": "com.sasedev.games.reflex.tauri",
"build": {
"frontendDist": "../../../Tauri/game-reflex-poc/frontend"
"beforeDevCommand": {
"script": "python3 ../../../scripts/build_reflex_tauri_wasm.py && npm run dev",
"cwd": "."
},
"devUrl": "http://localhost:1432",
"beforeBuildCommand": {
"script": "python3 ../../../scripts/build_reflex_tauri_wasm.py && npm run build",
"cwd": "."
},
"frontendDist": "../../../builds/sasedev-games/game-reflex-poc-tauri/dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "Reflex POC Tauri",
"width": 405,
"height": 720,
@@ -16,10 +26,11 @@
}
],
"security": {
"csp": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self' ipc: http://ipc.localhost"
"csp": "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self' ipc: http://ipc.localhost http://localhost:1432 ws://localhost:1433"
}
},
"bundle": {
"active": false
"active": false,
"icon": ["icons/icon.png"]
}
}