Files
LyAhn 072c3887cf feat(website): add Phokus product site with optimized media pipeline
Single-page marketing site for phokus.jezz.wtf in the website/ pnpm workspace
(React 19 + Vite 7 + Tailwind v4). Sections: Hero, Local-first, Search, Explore
& timeline, Curate, Cleanup, Tech facts, Download. Product-first composition with
a recurring aperture motif (EdgeMark) bleeding off alternating edges.

Screenshots are transcoded to AVIF/WebP at build via vite-imagetools (sharp);
~5.3MB of masters -> ~0.5MB served. Commits only the 7 in-use captures.
2026-06-15 19:39:56 +01:00

12 lines
514 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
import { imagetools } from "vite-imagetools";
// Static product site for phokus.jezz.wtf. Isolated from the Tauri renderer —
// no imports from ../src. Built and served by Ctrl on the Oracle VM.
// Screenshots are imported with ?as=picture and transcoded to AVIF/WebP at build.
export default defineConfig({
plugins: [react(), tailwindcss(), imagetools({ removeMetadata: true })],
});