moved to community folder

This commit is contained in:
Shannon Sands 2025-05-26 13:27:43 +10:00
parent a17dbdfedc
commit 0f61c9dbde
24 changed files with 118 additions and 9 deletions

View file

@ -1,16 +0,0 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
open: true,
// Local server runs on 3001, so we need to proxy requests to 3000
proxy: {
"/api": {
target: "http://localhost:3001",
changeOrigin: true,
},
},
},
});