cal.pub0.org/next.config.js

17 lines
427 B
JavaScript
Raw Normal View History

2022-03-23 21:22:57 +00:00
module.exports = {
async rewrites() {
return [
// This redirects requests recieved at / the root to the /api/ folder.
{
source: "/:rest*",
destination: "/api/:rest*",
},
// This redirects requests to api/v*/ to /api/ passing version as a query parameter.
{
source: "/api/v:version/:rest*",
destination: "/api/:rest*?version=:version",
},
];
},
};