diff options
| author | 2026-01-13 15:19:50 +0800 | |
|---|---|---|
| committer | 2026-01-13 15:19:50 +0800 | |
| commit | 94bbf11e4e37b880b111316f1af8006b05d38e2a (patch) | |
| tree | 090908cd31d387c4cda683582719c3492b2bf31f /src-tauri/tauri.conf.json | |
| parent | 7ca72b953e1e42659376016e0eb048593e31ed6d (diff) | |
| download | DropOut-94bbf11e4e37b880b111316f1af8006b05d38e2a.tar.gz DropOut-94bbf11e4e37b880b111316f1af8006b05d38e2a.zip | |
feat: Initialize Svelte application with Tailwind CSS and Tauri integration
- Added main application structure in App.svelte with a sidebar and main content area.
- Implemented game launch functionality using Tauri's invoke API.
- Included SVG icons for Vite and Svelte in the assets.
- Set up Tailwind CSS for styling in app.css.
- Created a Counter component for demonstration purposes.
- Configured TypeScript support with appropriate tsconfig files.
- Established Vite configuration for building the application.
Diffstat (limited to 'src-tauri/tauri.conf.json')
| -rw-r--r-- | src-tauri/tauri.conf.json | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 33273cc..2192fab 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -3,9 +3,10 @@ "version": "0.1.3", "identifier": "com.dropout.launcher", "build": { - "beforeDevCommand": "", - "beforeBuildCommand": "", - "frontendDist": "../ui" + "beforeDevCommand": "pnpm -C ../ui dev", + "beforeBuildCommand": "pnpm -C ../ui build", + "devUrl": "http://localhost:5173", + "frontendDist": "../ui/dist" }, "app": { "windows": [ |