From d2230cb03f7ed5f687a497bb06a2b656f1d48119 Mon Sep 17 00:00:00 2001 From: Mentor Date: Wed, 3 Apr 2024 15:46:22 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20remove=20svgr=20plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vite.config.js | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/vite.config.js b/vite.config.js index b5dc62f..18600fa 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,14 +1,13 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' -import svgr from 'vite-plugin-svgr' -export default defineConfig(() => { - return { - build: { - outDir: 'build', - }, - plugins: [react(), svgr()], - } -}) +export default defineConfig( () => { + return { + build: { + outDir: 'build', + }, + plugins: [ react() ], + } +} )