File size: 424 Bytes
cf8b7da
8b95140
 
 
 
 
7e19cbb
 
 
 
 
 
6def2c4
 
 
 
7e19cbb
 
8b95140
cf8b7da
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/** @type {import('next').NextConfig} */
const nextConfig = {
  experimental: {
    serverActions: true,
    serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
  },
  images: {
    remotePatterns: [
      {
        protocol: "https",
        hostname: "huggingface.co",
      },
      {
        protocol: "https",
        hostname: "aeiljuispo.cloudimg.io",
      },
    ],
  },
}

module.exports = nextConfig