package.json 수정하기
1. Window
set 명령어를 사용한다.
// package.json
...
"scripts": {
"start": "set PORT=3001 && react-scripts start",
}
...
2. Mac, Linux
export 명령어를 사용한다.
// package.json
...
"scripts": {
"start": "export PORT=3001 && react-scripts start",
}
...
'React' 카테고리의 다른 글
[React] 글로벌스타일(GlobalStyle) 적용 with Styled-Components (0) | 2024.06.25 |
---|---|
[React] SVG 파일 index.ts에서 export 하기 - SVGR (0) | 2024.05.22 |
[React-Query] 파리미터를 통해 레이어 선택 불러오기, 캐싱고민 (0) | 2024.02.08 |
[React-Query] Axios로 로컬 GeoJSON 파일 불러오기 (1) | 2024.02.06 |
[React] Vite 4.0 이상에서 SVG 사용하는 방법 (2) | 2024.02.02 |