Skip to content

Commit

Permalink
Merge pull request #560 from bandada-infra/chore/add-website-hackatho…
Browse files Browse the repository at this point in the history
…n-guide-redirect

chore(website): add hackathon guide redirect
  • Loading branch information
vplasencia authored Sep 23, 2024
2 parents 3308b2f + 5e3c9b8 commit 89b67ae
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion apps/website/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
import createMDX from "@next/mdx"
/** @type {import('next').NextConfig} */
const nextConfig = {
pageExtensions: ["tsx", "ts", "md", "mdx", "js"]
pageExtensions: ["tsx", "ts", "md", "mdx", "js"],
async redirects() {
return [
{
source: "/hackathon-guide",
destination:
"https://www.notion.so/pse-team/Bandada-s-Hackathon-Guide-82d0d9d3c6b64b7bb2a09d4c7647c083",
permanent: false,
basePath: false
}
]
}
}

const withMDX = createMDX({})
Expand Down

0 comments on commit 89b67ae

Please sign in to comment.