This commit is contained in:
ct
2025-06-21 20:21:47 +08:00
parent 6a77a8b8c2
commit 8bd90c85dc
37 changed files with 1752 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
const path = require("path");
module.exports = {
mode: "production",
entry: "./dist/cjs/index.js",
output: {
library: "FFmpegUtil",
libraryTarget: "umd",
filename: "index.js",
path: path.resolve(__dirname, "dist", "umd"),
},
};