로컬에서 여러 프로젝트를 작업을 하다보면, host 주소가 port를 변경해서 실행해야 할 때가 있다. 그럴때는 package.json 파일의 script를 조금 수정해주면된다. "scripts": { "dev": "vite --host 0.0.0.0 --port 4000", "build": "vite build", "lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview" }, 이렇게 --host / --port 옵션을 사용해서 지정할 수가 있다.