HTML/CSS section 3 vid 42: parcel breaking?

Hi everyone! I’m hoping someone can help me out with this. I’ve downloaded nodejs and used that to then download parcel. im at the step in the lesson where we are finally trying to launch a live server of the website via parcel. when I go to launch, im getting these following messages:
PS C:\Users\18473\Desktop\Moshified> parcel index.html
Server running at http://localhost:1234

  • Building…(node:10072) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 buildEnd listeners added to [Bundler]. Use emitter.setMaxListeners() to increase limit
    (Use node --trace-warnings ... to show where the warning was created)
  • Building…(node:10072) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 buildEnd listeners added to [Bundler]. Use emitter.setMaxListeners() to increase limit
    × The “data” argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received null
    at Hash.update (internal/crypto/hash.js:84:11)
    at Bundle.getHash (C:\Users\18473\AppData\Roaming\npm\node_modules\parcel-bundler\src\Bundle.js:301:12)
    at Bundle.package (C:\Users\18473\AppData\Roaming\npm\node_modules\parcel-bundler\src\Bundle.js:186:23)
    at Bundle.package (C:\Users\18473\AppData\Roaming\npm\node_modules\parcel-bundler\src\Bundle.js:198:30)
    at Bundler.bundle (C:\Users\18473\AppData\Roaming\npm\node_modules\parcel-bundler\src\Bundler.js:325:49)
    at processTicksAndRejections (internal/process/task_queues.js:95:5)

help :stuck_out_tongue:

i got it to work. incase anyone stumbles upon the same problem, the text displayed wasnt the problem at all. i ended up closing and reopening vscode several times. each time, i would get a different message. eventually i found that some of my images were given faulty urls. fixed that and then it worked.