9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
import svgr from "vite-plugin-svgr";
|
|
|
|
export default defineConfig({
|
|
base: "",
|
|
plugins: [react(), svgr()],
|
|
});
|