Files
hetty/admin/next.config.js
2020-09-20 22:30:17 +02:00

11 lines
224 B
JavaScript

module.exports = {
async rewrites() {
return [
{
source: "/api/:path",
destination: "http://localhost:8080/api/:path", // Matched parameters can be used in the destination
},
];
},
};