[React] 개발자 도구에서 소스코드 노출 차단 (GENERATE_SOURCEMAP)




1. 프로젝트 디렉토리에 .env 파일 생성 (아래 내용 작성)

GENERATE_SOURCEMAP = false

2. 프로젝트 빌드

npm run build

> frontend@0.1.0 build
> react-scripts build

Creating an optimized production build...
Compiled with warnings.

...

The project was built assuming it is hosted at /.
You can control this with the homepage field in your package.json.

The build folder is ready to be deployed.
You may serve it with a static server:

  npm install -g serve
  serve -s build

Find out more about deployment here:

  https://cra.link/deployment

3. serve 설치

npm install -g serve

4. 서비스 실행

# 기본 포트 3000
serve -s build
# 포트 지정
serve -s build -l 3001



Leave a Comment