try android build

This commit is contained in:
2025-05-28 17:27:25 +02:00
parent 4774d3fdc1
commit ceb5f43f15
10 changed files with 68 additions and 24 deletions

View File

@ -5,7 +5,7 @@
"identifier": "space.haex.hub",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:3003",
"devUrl": "http://0.0.0.0:3001",
"beforeBuildCommand": "pnpm generate",
"frontendDist": "../.output/public"
},
@ -19,14 +19,24 @@
],
"security": {
"csp": {
"default-src": ["'self'", "ipc: http://ipc.localhost", "blob:"],
"media-src": [
"default-src": ["'self'", "http://tauri.localhost"],
"script-src": [
"'self'",
"asset:",
"http://asset.localhost",
"blob:",
"asset: http://asset.localhost"
]
"http://tauri.localhost",
"'wasm-unsafe-eval'"
],
"style-src": ["'self'", "http://tauri.localhost", "'unsafe-inline'"],
"connect-src": [
"'self'",
"http://tauri.localhost",
"ipc:http://ipc.localhost"
],
"img-src": ["'self'", "http://tauri.localhost", "data:", "blob:"],
"font-src": ["'self'", "http://tauri.localhost"],
"object-src": ["'none'"],
"media-src": ["'self'", "http://tauri.localhost"],
"frame-src": ["'none'"],
"frame-ancestors": ["'none'"]
},
"assetProtocol": {
"enable": true,