This commit is contained in:
Julian Freeman
2026-04-16 10:39:53 -04:00
commit 6eb0b9bdf6
40 changed files with 8258 additions and 0 deletions

37
src-tauri/tauri.conf.json Normal file
View File

@@ -0,0 +1,37 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "chrom-tool",
"version": "0.1.0",
"identifier": "top.volan.chrom-tool",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"title": "Browser Assistant",
"width": 1400,
"height": 900,
"minWidth": 1100,
"minHeight": 720
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}