npm run start시 new TextEncoder(); 에러 납니다.ㅠㅠ
"node_modules/whatwg-url/lib/encoding.js" 파일 열고 아래와 같이 수정해보세요! "use strict"; const {TextDecoder, TextEncoder} = require("util") //이 부분 추가 const utf8Encoder = new TextEncoder(); const utf8Decoder = new TextDecoder("utf-8", { ignoreBOM: true }); function utf8Encode(string) { return utf8Encoder.encode(string); } function utf8DecodeWithoutBOM(bytes) { return utf8Decoder.decode(bytes); } module.exports = { utf8Encode, utf8DecodeWithoutBOM };