← back to Logo Variants App
src-tauri/tauri.conf.json
45 lines
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Logo Showdown",
"version": "0.1.0",
"identifier": "com.designerwallcoverings.logoshowdown",
"build": {
"frontendDist": "../web",
"devUrl": "http://127.0.0.1:9716/logo-variants.html"
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"label": "main",
"title": "Logo Showdown",
"width": 1440,
"height": 900,
"minWidth": 900,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"decorations": true,
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"transparent": false,
"backgroundColor": "#0b0b0d",
"url": "http://127.0.0.1:9716/logo-variants.html"
}
],
"security": {
"csp": null,
"dangerousDisableAssetCspModification": true
}
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "© Designer Wallcoverings",
"targets": ["app"],
"macOS": {
"minimumSystemVersion": "11.0"
}
}
}