1 Commits

Author SHA1 Message Date
046cac6cdc adjust cors 2026-03-13 23:22:45 -04:00

View File

@ -1,6 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
})
server: {
cors: {
origin: "http://localhost:3000",
},
},
});