tauri/examples/svelte/svelte-app/src-tauri/tauri.conf.json
Lucas Fernandes Nogueira 4416cdbb30 chore(examples) update CSP and tauri-webpack to 0.2.0 (#256)
* chore(examples) update CSP and tauri-webpack to 0.2.0

* chore(updater) update tauri-api to 0.3.0
2019-12-31 20:09:34 +01:00

31 lines
526 B
JSON

{
"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
},
"automaticStart": {
"active": true
}
}
}