Skip to content

Commit e01b7f4

Browse files
committed
[fix] : vite svgr 설정 제거
1 parent 8d97baa commit e01b7f4

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

vite.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import { defineConfig } from 'vite';
22
import react from '@vitejs/plugin-react-swc';
33
import mkcert from 'vite-plugin-mkcert';
4-
import svgr from 'vite-plugin-svgr';
54

65
import path from 'path';
76

87
const __dirname = path.resolve();
98

109
export default defineConfig({
11-
plugins: [react(), svgr(), mkcert({ certFileName: './localhost.pem', keyFileName: './localhost-key.pem' })],
10+
plugins: [react(), mkcert({ certFileName: './localhost.pem', keyFileName: './localhost-key.pem' })],
1211
server: {
1312
https: true,
1413
cors: {

0 commit comments

Comments
 (0)