환경
- 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;
}