We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e661dc1 commit 74cd317Copy full SHA for 74cd317
packages/build/src/extensions/core/ffmpeg.ts
@@ -24,6 +24,13 @@ export type FfmpegOptions = {
24
export function ffmpeg(options: FfmpegOptions = {}): BuildExtension {
25
return {
26
name: "ffmpeg",
27
+ externalsForTarget(target) {
28
+ if (target === "dev") {
29
+ return [];
30
+ }
31
+
32
+ return ["fluent-ffmpeg"];
33
+ },
34
onBuildComplete(context) {
35
if (context.target === "dev") {
36
return;
0 commit comments