17 lines
268 B
TypeScript
17 lines
268 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: [
|
|
"ffmpeg-static",
|
|
"ffprobe-static",
|
|
"googleapis",
|
|
"openai",
|
|
"js-yaml",
|
|
"p-limit",
|
|
"zod",
|
|
"dotenv",
|
|
],
|
|
};
|
|
|
|
export default nextConfig;
|