micro/next.config.js

11 lines
153 B
JavaScript

module.exports = {
async rewrites() {
return [
{
source: "/f/:fileId",
destination: "/file/:fileId",
},
];
},
};