I'm currently tinkering with an open source audio editor which seems to be pretty outdated. I had to update a few things and, now, when I compile my app, it throws this error :
Module not found: Can't resolve 'worker' in 'C:\Users\User\talks\src\actions'
Which is due to this line :
import StatsWaveformWorker from 'worker?inline!../workers/statsWaveform.js';
It's the first "worker" in (what I think is) the path to the imported module that causes problems. I know that because, when I change it, the error is that it can't resolve what I put in place of worker I have never seen this import part format before. What do the worker and inline arguments represent and, if you already know why it doesn't work, how do I fix it ?