- Created wails.json to define project metadata, asset directory, and frontend build commands. - Included author information for project attribution.
16 lines
357 B
JSON
16 lines
357 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
|