mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
78f1e03495
* feat(tauri.js) inject MutationObserver to lazy load scripts on no-server * feat(tauri.js) add disable inliner config * fix(tauri.js) add types * feat(tauri.js&tauri) lazy load CSS files on mutation observer
31 lines
519 B
JSON
31 lines
519 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
|
|
},
|
|
"inliner": {
|
|
"active": true
|
|
}
|
|
}
|
|
}
|