1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/next.config.js
2022-01-17 16:13:45 +07:00

13 lines
245 B
JavaScript

const withTM = require('next-transpile-modules')(['ramda']);
module.exports = withTM({
/* Your Next.js config */
async rewrites() {
return [
{
source: '/post:id',
destination: '/node/:id',
},
];
},
});