My goal is to set up a reverse proxy for the GeForce NOW website using Next.js, but I'm struggling to make it work.
module.exports = {
async rewrites() {
return [
{
source: '/:slug',
destination: 'https://play.geforcenow.com/:slug',
},
]
},
}
I've followed the documentation to create this configuration, but unfortunately, it's not functioning as expected.