guess-the-image / next.config.js
enzostvs's picture
enzostvs HF Staff
work in progress. end page and error management are missing
091969f
raw
history blame
450 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
serverActions: {
basePath: "/api",
},
serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "huggingface.co",
},
{
protocol: "https",
hostname: "aeiljuispo.cloudimg.io",
},
],
}
}
module.exports = nextConfig