File size: 430 Bytes
645ad9d
68e3236
645ad9d
68e3236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645ad9d
 
68e3236
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import type { NextConfig } from "next";
/** @type {import('next').NextConfig} */
const nextConfig: NextConfig = {
  images: {
    domains: ['*'],
    dangerouslyAllowSVG: true,
    remotePatterns: [
      {
        protocol: 'https',
        hostname: '*',
      },
    ],
  },
  output: 'standalone', 
  
  experimental: {
      serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
  },
};

export default nextConfig;