Files
hetty/admin/next.config.js

11 lines
224 B
JavaScript
Raw Normal View History

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