sql-agent / next.config.ts
fullstuckdev's picture
Update next.config.ts
68e3236 verified
raw
history blame
430 Bytes
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;