10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
// https://vitejs.dev/config/
|
|
/** @type {import('vite').UserConfig} */
|
|
export default defineConfig({
|
|
server: { proxy: { "/api": "http://localhost:3000" } },
|
|
plugins: [react()],
|
|
});
|