Fix paths and extensions

This commit is contained in:
Johannes Marbach 2023-11-13 20:10:55 +01:00
parent 253ff78c00
commit 624be1a7fa
5 changed files with 5 additions and 5 deletions

View file

@ -15,5 +15,5 @@ limitations under the License.
*/
export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker {
return new Worker(new URL("../workers/playback.worker.ts", import.meta.url), options);
return new Worker(new URL("./playback.worker.ts", import.meta.url), options);
}