sql-agent / next.config.ts
fullstuckdev's picture
Update next.config.ts
08b4b68 verified
raw
history blame
266 Bytes
import type { NextConfig } from "next";
/** @type {import('next').NextConfig} */
const nextConfig: NextConfig = {
output: 'standalone',
experimental: {
serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
},
};
export default nextConfig;