LinkList/frontend/next.config.js

18 lines
307 B
JavaScript
Raw Normal View History

// @ts-check
// eslint-disable-next-line no-undef
module.exports = {
async rewrites() {
return [
{
source: "/api",
2021-04-02 16:14:50 -04:00
destination: "http://localhost:5000",
},
{
2021-04-02 16:14:50 -04:00
source: "/api/:path*",
destination: "http://localhost:5000/:path*",
},
];
},
};