Add wails.json configuration for Linking Tool

- Created wails.json to define project metadata, asset directory, and frontend build commands.
- Included author information for project attribution.
This commit is contained in:
2025-12-26 21:20:03 -06:00
parent 5896cd7064
commit 3d81697538

15
desktop/wails.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "Linking Tool",
"assetdir": "frontend_dist",
"frontend:dir": "..",
"frontend:install": "npm install",
"frontend:build": "npm run build",
"frontend:dev:watcher": "npm run dev",
"frontend:dev:serverUrl": "http://localhost:5173",
"outputfilename": "linking-tool",
"author": {
"name": "Quad4",
"email": "dev@quad4.io"
}
}