Bingran You
Mirror SkillsBench v1.1 as a benchmark task-tree dataset
d03762b
Raw
History Blame Contribute Delete
371 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'picsum.photos',
},
],
},
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://127.0.0.1:4000/api/:path*',
},
];
},
};
module.exports = nextConfig;