mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
506ce4835b
* refactor(updater): accomodate to new tauri config restructure RFC#5 https://github.com/tauri-apps/rfcs/blob/f3e82a6b0c5390401e855850d47dc7b7d9afd684/texts/0005-tauri-config-restructure.md RFC#5 PR implementation: https://github.com/tauri-apps/tauri/pull/8723 * lint and update configs
22 lines
475 B
JSON
22 lines
475 B
JSON
{
|
|
"identifier": "studio.tauri.example",
|
|
"build": {
|
|
"frontendDist": ".",
|
|
"devUrl": "http://localhost:4000"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Tauri App"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: http://tauri.localhost 'unsafe-eval' 'unsafe-inline' 'self'"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"icon": ["../../../examples/api/src-tauri/icons/icon.png"]
|
|
}
|
|
}
|