feat: initial release of fct

This commit is contained in:
rzmk 2024-07-07 00:32:06 -04:00
commit eb80cc5ec7
No known key found for this signature in database
96 changed files with 6616 additions and 0 deletions

36
src-tauri/tauri.conf.json Normal file
View file

@ -0,0 +1,36 @@
{
"productName": "fct",
"version": "0.1.0",
"identifier": "com.mueezkhan.fct",
"build": {
"frontendDist": "../out",
"devUrl": "http://localhost:3000",
"beforeDevCommand": "bun run dev",
"beforeBuildCommand": "bun run build"
},
"app": {
"windows": [
{
"title": "File Converter Tool",
"width": 800,
"height": 600,
"resizable": true,
"fullscreen": false
}
],
"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"
]
}
}