diff options
| author | Adam Malczewski <[email protected]> | 2026-06-07 01:53:47 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-07 01:53:47 +0900 |
| commit | 90c438c4562793eb09358f9d1a050d2267f4fca5 (patch) | |
| tree | cf858fb92464b8e2e459a1b88b76b856bb4dfe46 /src/main.ts | |
| parent | c0fa581c8ac563c916948f44596ef361817dc580 (diff) | |
| download | dispatch-web-90c438c4562793eb09358f9d1a050d2267f4fca5.tar.gz dispatch-web-90c438c4562793eb09358f9d1a050d2267f4fca5.zip | |
Slice 3 setup: Tailwind v4 + DaisyUI v5 (dracula enabled) + 'tab' vocab
- add tailwindcss@4 + @tailwindcss/vite + daisyui@5; vite tailwind plugin
- src/app.css: @import tailwindcss + @plugin daisyui { themes: dracula --default }
(theme BUNDLED, not just named); imported in main.ts
- index.html: <html data-theme="dracula">
- biome.json: enable css tailwindDirectives so @plugin parses
- GLOSSARY: define FE term 'tab' (workspace slot referencing a conversation;
holds conversationId + model + title; close = local forget)
Verified: dracula tokens bundled in CSS, svelte-check 0/0, vitest 222, biome
clean, build ok.
Diffstat (limited to 'src/main.ts')
| -rw-r--r-- | src/main.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts index f58cfe2..9ebef3a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,5 +1,6 @@ import { mount } from "svelte"; import App from "./App.svelte"; +import "./app.css"; const target = document.getElementById("app"); if (!target) { |
