Wire up Tailwind CSS 4, Vitest, and core app libraries

Add Tailwind (via Vite plugin), Vitest+RTL test setup, and the
Zustand/TanStack Query/Lucide libraries the architecture plan calls
for. Strip the electron-vite demo boilerplate (logo, IPC ping demo,
Versions component) in favor of a minimal placeholder screen.

Verified: typecheck, lint, and test suite all pass; pnpm dev boots
and serves the correct renderer HTML.
This commit is contained in:
R3ap3R
2026-08-02 23:21:04 -05:00
parent 5a3315eff6
commit 25eb6b7b58
15 changed files with 1367 additions and 324 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import { resolve } from 'path'
import { defineConfig } from 'electron-vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
main: {},
@@ -11,6 +12,6 @@ export default defineConfig({
'@renderer': resolve('src/renderer/src')
}
},
plugins: [react()]
plugins: [react(), tailwindcss()]
}
})