sendou.ink/next.config.js
2020-11-20 12:12:48 +02:00

17 lines
381 B
JavaScript

const withImages = require("next-images");
module.exports = withImages({
async rewrites() {
return [
// check if Next.js project routes match before we attempt proxying
{
source: "/:path*",
destination: "/:path*",
},
{
source: "/:path*",
destination: `https://sendou-ink.herokuapp.com/:path*`,
},
];
},
});