10 lines
194 B
TypeScript
10 lines
194 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()],
|
|
});
|