AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
/**
* @param {import('next').NextConfig} nextConfig
*/
const robotsPlugin = (nextConfig = {}) => {
return Object.assign({}, nextConfig, {
async rewrites() {
return [
...(await nextConfig.rewrites()),
// robots route
{
source: "/robots.txt",
destination: "/api/robots",
},
];
},
});
};
module.exports = robotsPlugin;