[react/vite] 로컬 서버 기동(부팅, booting)시 콘솔 에러 로그 없이 멈추는 현상 (hang, halt, stop, freeze)

By | 3월 29, 2023

환경

  • react 18
  • vite 4


원인 1

  • 스크립트 에러가 존재할 경우


원인 2

  • 정말 알 수 없는 케이스 (URL()이 문제인가? import.meta.url이 문제인가?)
export function getImageUrl(filePath: string) {
  // const ret = import.meta.url; // 문제 없음
  // const ret = new URL(`${filePath}`, ''); // 문제 없음
  // const ret = new URL('blablabla', import.meta.url).href; // 문제 없음
  // const ret = new URL(filePath, import.meta.url).href; // 문제 없음
  const ret = new URL(`${filePath}`, import.meta.url).href; // 로컬 서버 기동중 멈춤. node.exe cpu점유율 상승
  return ret;
}
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments