webpack2 [error] Failed to parse source map from ... Error: ENOENT: no such file or directory [ 상황 ] react 애플리케이션을 start 하거나 build 하면 아래와 같이 Failed to parse source map from ... Error: ENOENT: no such file or directory extractParamsFromWeigthMap.ts 파일이 존재하지 않아 source map 파싱이 실패한다. [ 원인 ] 실제로 사용하고 있는 face-api.js 모듈은 extractParamsFromWeigthMap.ts 파일을 제공하지 않음을 확인할 수 있다. [ 해결-1 ] `source-map-loader` rule의 exclude에 해당 경로를 설정한다. module: { ... rules: [ { exclude: [ /\/node_modules\/face-api.*/, .. 2022. 1. 1. [error] Module not found: Error: Can't resolve 'fs' in '..../node_modules/~~~~~~~' [ 상황 ] webpack3로 잘 번들링해서 사용하고 있던 react 프로젝트. 새롭게 추가할 npm을 지원하지 않는 문제 + 더 빠른 빌드 속도를 위해서 webpack5로 버전을 올렸다. 업그레이드를 하자 프로젝트를 실행(yarn start)하거나 빌드(yarn build)할 때 다음과 같은 오류가 나타났다. Module not found: Error: Can't resolve 'fs' in '/home/adslk/bitbucket/pams_citest/pesadmin/node_modules/helpme-js/build/es6/env' node_moduels 모듈을 사용하기 위해 reoslve를 진행하는데 'fs'를 사용할 수 없다고 한다. [ 원인 ] fs는 node에서 제공하는 기본 모듈이므로 모듈.. 2022. 1. 1. 이전 1 다음