mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
13 lines
245 B
JavaScript
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',
|
|
},
|
|
];
|
|
},
|
|
});
|