maybe a fork of sparrowhe's "bluesky circle" webapp, to frontend only?
1import path from "path" 2import react from "@vitejs/plugin-react" 3import { defineConfig } from "vite" 4 5export default defineConfig({ 6 plugins: [react()], 7 resolve: { 8 alias: { 9 "@": path.resolve(__dirname, "./src"), 10 }, 11 }, 12})