stable-diffusion-tpu / next.config.js
enzostvs's picture
enzostvs HF staff
user displayed
6def2c4
raw
history blame
No virus
424 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: true,
serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "huggingface.co",
},
{
protocol: "https",
hostname: "aeiljuispo.cloudimg.io",
},
],
},
}
module.exports = nextConfig