mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-26 12:38:04 +03:00
a4e229ca10
* feat(tauri.js): move to typescript * fix(tauri.js): properly export api as commonjs * feat(tauri.js): convert tauricon to typescript * fix(tauri.js/tauricon): type error * chore(tauri.js/package): update yarn.lock * chore(tauri.js/package): add build/pretest scripts * refactor(tauri.js/template): remove duplicate types * feat(tauri.js): use tauri.conf.json instead of .js * feat(tauri) read config using tauri.conf.json * fix(tauri) read devPath index.html from distDir * chore(examples) move to conf.json * chore(tauri.js) remove todo * fix(ci) TAURI_DIR env variable * fix(examples) move svelte-app config to tauri.conf.json * fix(examples): line endings tauri.conf.json * addition to previous commit * fix(test): EOF in tauri.conf.json Co-authored-by: Noah Klayman <noahklayman@gmail.com> Co-authored-by: nothingismagick <drthompsonsmagickindustries@gmail.com>
31 lines
520 B
JSON
31 lines
520 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 data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline'"
|
|
},
|
|
"edge": {
|
|
"active": true
|
|
},
|
|
"automaticStart": {
|
|
"active": true
|
|
}
|
|
}
|
|
}
|