Fix website

This commit is contained in:
jeromewu 2023-12-25 17:11:09 +08:00
parent 39f4c69571
commit 083397a602
2 changed files with 4 additions and 1 deletions

View File

@ -58,7 +58,7 @@ const load = async ({
// when web worker type is `module`. // when web worker type is `module`.
(self as WorkerGlobalScope).createFFmpegCore = ( (self as WorkerGlobalScope).createFFmpegCore = (
(await import( (await import(
/* webpackIgnore: true *//* @vite-ignore */ _coreURL /* @vite-ignore */ _coreURL
)) as ImportedFFmpegCoreModuleFactory )) as ImportedFFmpegCoreModuleFactory
).default; ).default;

View File

@ -13,4 +13,7 @@ module.exports = {
library: "FFmpegWASM", library: "FFmpegWASM",
libraryTarget: "umd", libraryTarget: "umd",
}, },
stats: {
warnings:false
}
}; };