i think i got step one working

This commit is contained in:
2026-03-25 01:22:30 -06:00
parent 4230ae6cb9
commit b4bcb8f3f2
14 changed files with 5932 additions and 32 deletions

View File

@ -1,19 +1,23 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "cutscript",
"productName": "TalkEdit",
"version": "0.1.0",
"identifier": "com.tauri.dev",
"identifier": "com.talkedit.app",
"build": {
"frontendDist": "../dist",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
"frontendDist": "../frontend/dist",
"devUrl": "http://localhost:5173",
"beforeDevCommand": "cd frontend && npm run dev",
"beforeBuildCommand": "cd frontend && npm run build"
},
"app": {
"windows": [
{
"title": "cutscript",
"width": 800,
"height": 600,
"label": "main",
"title": "TalkEdit",
"width": 1400,
"height": 900,
"minWidth": 1024,
"minHeight": 700,
"resizable": true,
"fullscreen": false
}