svg - react components

This commit is contained in:
Tatiana Nikolaeva 2025-05-14 19:54:39 +05:00
parent 122f14adf7
commit fd8273a2fe
25 changed files with 488 additions and 65 deletions

View file

@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import svgr from 'vite-plugin-svgr';
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), svgr()],
})