Skip to content

Commit

Permalink
Fix redirect paths in next.config.js for feed and PrimeVue blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
geekskai committed Nov 3, 2024
1 parent e674001 commit 93d9cb6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,16 @@ module.exports = () => {
async redirects() {
return [
{
source: "/:path*/feed.xml/",
destination: "/:path*/feed.xml",
source: '/:path*/feed.xml/',
destination: '/:path*/feed.xml',
permanent: true,
},
{
source: "/blog/primevue/how-to-change-css-of-primevue/",
destination: "/blog/css/how-to-change-css-of-primevue/",
source: '/blog/primevue/how-to-change-css-of-primevue/',
destination: '/blog/css/how-to-change-css-of-primevue/',
permanent: true,
},
];
]
},
output,
basePath,
Expand Down

0 comments on commit 93d9cb6

Please sign in to comment.