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