
1. 문제상황import { defineConfig, loadEnv } from 'vite';import react from '@vitejs/plugin-react-swc';export default defineConfig(({ mode }) => { const env = loadEnv(mode, process.cwd(), ''); return { plugins: [react()], //빌드 관련 설정 build: { minify: 'terser', terserOptions: { compress: { drop_console: true, drop_debugger: true, }, }, }, ...