Skip to content

Commit

Permalink
🔥 remove svgr plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
actuallymentor committed Apr 3, 2024
1 parent 4336c36 commit d2230cb
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions vite.config.js
Original file line number Diff line number Diff line change
@@ -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() ],
}
} )

0 comments on commit d2230cb

Please sign in to comment.