File size: 342 Bytes
5a74c0d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
/** @type {import('next').NextConfig} */
const nextConfig = {
  // https://nextjs.org/docs/app/api-reference/config/next-config-js/output
  output: "standalone",
  // https://nextjs.org/docs/app/api-reference/config/next-config-js/serverExternalPackages
  serverExternalPackages: ["@huggingface/transformers"],
};

export default nextConfig;