mirror of
https://github.com/detleph/components.git
synced 2026-09-04 00:26:01 +02:00
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import svgr from "vite-plugin-svgr";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), svgr()],
|
|
});
|