mirror of
https://github.com/detleph/components.git
synced 2026-09-04 08:36:03 +02:00
9 lines
206 B
TypeScript
9 lines
206 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()]
|
|
})
|