18 lines
733 B
JSON
18 lines
733 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "CEX",
|
|
"version": "0.1.0",
|
|
"identifier": "dev.cex.explorer",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [{ "title": "CEX — Code Explorer", "incognito": true, "width": 1280, "height": 850, "minWidth": 800, "minHeight": 600 }],
|
|
"security": { "csp": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; worker-src 'self' blob:; img-src 'self' data:; font-src 'self' data:; connect-src ipc: http://ipc.localhost" }
|
|
},
|
|
"bundle": { "active": false, "icon": ["icons/128x128.png"] }
|
|
}
|