stable-diffusion-tpu / next.config.js
enzostvs's picture
enzostvs HF Staff
replace prisma blob saved with datasets
7e19cbb
raw
history blame
336 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: true,
serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "huggingface.co",
},
],
},
}
module.exports = nextConfig