1
1
mirror of https://github.com/tauri-apps/tauri.git synced 2025-01-08 20:31:09 +03:00
tauri/examples/svelte/svelte-app/src-tauri/tauri.conf.json

31 lines
519 B
JSON
Raw Normal View History

{
"build": {
"distDir": "../public",
"devPath": "http://localhost:5000"
},
"ctx": {},
"tauri": {
"embeddedServer": {
"active": true
},
"bundle": {
"active": true
},
"whitelist": {
"all": false
},
"window": {
"title": "Tauri App"
},
"security": {
"csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'"
},
"edge": {
"active": true
},
"inliner": {
"active": true
}
}
}