rag-full / ui /next.config.js
Junranl's picture
Upload folder using huggingface_hub
6e1a53e verified
raw
history blame contribute delete
392 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
domains: ["lh3.googleusercontent.com"],
},
trailingSlash: true,
async rewrites() {
return [
{
source: "/api/:path*",
destination: `${process.env.NEXT_PUBLIC_API_ENDPOINT}/api/:path*`,
},
];
},
};
module.exports = nextConfig;