diff --git a/src/content/post/front-end/CRA_to_Vite.mdx b/src/content/post/front-end/CRA_to_Vite.mdx index f9ee145..8cb55c5 100644 --- a/src/content/post/front-end/CRA_to_Vite.mdx +++ b/src/content/post/front-end/CRA_to_Vite.mdx @@ -59,7 +59,7 @@ export default defineConfig({ - port 설정 - Vite 프로젝트는 기본 포트가 5173이므로 기존 개발 환경에 맞게 포트 번호 수정 -- define: { global\: '\{\}' } +- `define: { global: '{}' }` - Node.js 환경에서 사용되는 global 객체를 웹 환경에서도 사용할 수 있도록 하여 호환성을 보장하고, 라이브러리나 모듈의 원활한 사용을 지원하기 위한 것 - build 폴더 관련 설정 - VIte 프로젝트는 기본 빌드 폴더명이 ‘dist’이므로 기존 개발 환경에 맞게 빌드 폴더명을 ‘build’로 변경