6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
});
|