- Remove Flutter app and egui placeholder crate, commit to Tauri as sole GUI - Update PLAN.md to replace egui with Tauri across all phases (v4.0) - Redesign task screen: sliding drawer for list picker, floating FAB for new tasks, bottom sheet toast for task creation with title + description fields - Add description support to create_task Tauri command - Lighten dark theme to GNOME-style neutral grays, shift primary to cyan-blue - Fix Wayland compatibility (dev port change) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
465 B
TypeScript
18 lines
465 B
TypeScript
import { defineConfig } from "vite";
|
|
import { svelte } from "@sveltejs/vite-plugin-svelte";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
const host = process.env.TAURI_DEV_HOST;
|
|
|
|
export default defineConfig({
|
|
plugins: [svelte(), tailwindcss()],
|
|
clearScreen: false,
|
|
server: {
|
|
port: 1422,
|
|
strictPort: true,
|
|
host: host || false,
|
|
hmr: host ? { protocol: "ws", host, port: 1421 } : undefined,
|
|
watch: { ignored: ["**/src-tauri/**"] },
|
|
},
|
|
});
|