Spaces:
Sleeping
Sleeping
| 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; |