mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
tauri app with react+vite setup
- tailwind is needed
This commit is contained in:
31
src-tauri/tauri.conf.json
Normal file
31
src-tauri/tauri.conf.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "issue",
|
||||
"version": "0.1.0",
|
||||
"identifier": "com.hex248.issue",
|
||||
"build": {
|
||||
"beforeDevCommand": "bun run dev",
|
||||
"devUrl": "http://localhost:1420",
|
||||
"beforeBuildCommand": "bun run build",
|
||||
"frontendDist": "../dist"
|
||||
},
|
||||
"app": {
|
||||
"windows": [
|
||||
{
|
||||
"title": "Issue Project Manager",
|
||||
"width": 1600,
|
||||
"height": 900,
|
||||
"minWidth": 640,
|
||||
"minHeight": 360,
|
||||
"decorations": false
|
||||
}
|
||||
],
|
||||
"security": {
|
||||
"csp": null
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": "all"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user