Skip to content

Commit

Permalink
Move projects to subfolders
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbouchenoire committed Jun 17, 2024
1 parent 0ceae56 commit 6e1613e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,26 @@ export default () => {
trailingSlash: false,
eslint: {
ignoreDuringBuilds: true
},
async rewrites() {
return [
{
source: "/:path*",
destination: `/:path*`
},
{
source: "/projects/symbolist/:path*",
destination: "https://symbolist.marcbouchenoire.com/:path*"
},
{
source: "/projects/typometer/:path*",
destination: "https://typometer.marcbouchenoire.com/:path*"
},
{
source: "/projects/dimmmensions/:path*",
destination: "https://dimmmensions.marcbouchenoire.com/:path*"
}
]
}
}
}

0 comments on commit 6e1613e

Please sign in to comment.