Hello everyone! I've developed a app with nextjs 15 app router, and it's using fluent-ffmpeg for audio watermark. So I have to include ffmpeg-static's binary or other binary to call fluent-ffmpeg function. I can add it to at development environment, but at production deploy, I can't include it to build result, I tried with nextjs config, so I added binary file to .next/vendor-chunks, and can call at local build env, but at vercel, I can't call, I checked logs, and it says that can't find same file, so I think it's due to vercel's build method. Do you know how I can solve it? Thank you.