Minimal personal site built with React, Vite, and Tailwind CSS.
docker compose up --build -dThe site will be available at http://localhost:3012.
If Docker on your machine is missing the buildx plugin, use:
DOCKER_BUILDKIT=0 COMPOSE_DOCKER_CLI_BUILD=0 docker compose up --build -dnpm install
npm run devnpm run buildIf you start from a fresh Vite React app, install Tailwind and its Vite plugin:
npm install -D tailwindcss @tailwindcss/viteThen add tailwindcss() to vite.config.js and @import "tailwindcss"; to your main stylesheet.