33 lines
828 B
JSON
33 lines
828 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "HoloLake",
|
|
"version": "0.1.0",
|
|
"identifier": "world.guanghu.hololake",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://127.0.0.1:5210",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "HoloLake",
|
|
"width": 1180,
|
|
"height": 760,
|
|
"minWidth": 760,
|
|
"minHeight": 520
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; connect-src 'self' ipc: http://ipc.localhost; img-src 'self' data:; style-src 'self' 'unsafe-inline'; script-src 'self'"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"createUpdaterArtifacts": true,
|
|
"category": "Productivity"
|
|
}
|
|
}
|