mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-10 11:16:37 +03:00
8de308d1bf
* feat(core): implement new config structure RFC#5f3e82a6b0c/texts/0005-tauri-config-restructure.md
* fixes * remove tauri-plugin copy [skip ci] * move platform specific configs * fix build * fix cli * doctests * change files * read updater plugin config on CLI * doctests * remove env var from docs * fix getting pubkey * add migrations * clippy * update change file [skip ci] * rename frontendDist to prodFrontend? * Revert "rename frontendDist to prodFrontend?" This reverts commitef7394f085
. * fix all_features check * fix field name * single license getter on bundler * readd msiexec_args * remove unused fixture * update template * Update .changes/tauri-bundle-settings-rfc-5.md * Update .changes/config-restructure-rfc-5.md * lint bundler, fix change file * rename AppUrl to FrontendDist, add explicit variants for docs * fix build * lint --------- Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Lucas Fernandes Nogueira <lucas@tauri.app>
44 lines
917 B
JSON
44 lines
917 B
JSON
{
|
|
"$schema": "../../core/tauri-config-schema/schema.json",
|
|
"productName": "Splashscreen",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tauri.dev",
|
|
"build": {
|
|
"frontendDist": "dist"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "Tauri",
|
|
"width": 800,
|
|
"height": 600,
|
|
"visible": false
|
|
},
|
|
{
|
|
"label": "splashscreen",
|
|
"width": 400,
|
|
"height": 200,
|
|
"decorations": false,
|
|
"resizable": false,
|
|
"url": "splashscreen.html"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": "default-src 'self'; connect-src ipc: http://ipc.localhost"
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"../.icons/32x32.png",
|
|
"../.icons/128x128.png",
|
|
"../.icons/128x128@2x.png",
|
|
"../.icons/icon.icns",
|
|
"../.icons/icon.ico"
|
|
]
|
|
}
|
|
}
|