mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
11 lines
224 B
JavaScript
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
|
|
},
|
|
];
|
|
},
|
|
};
|