2025-07-25 18:07:20 +00:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import react from "@vitejs/plugin-react";
|
2025-07-08 10:40:49 -07:00
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [react()],
|
2025-07-25 18:07:20 +00:00
|
|
|
server: {
|
|
|
|
},
|
|
|
|
});
|