1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-05-07 02:26:41 +07:00

(nextjs) fixed flow loading, anchors and styles

This commit is contained in:
Fedor Katurov 2022-01-17 16:13:45 +07:00
parent 2e0ad878a3
commit c5bac54494
11 changed files with 90 additions and 70 deletions

View file

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