Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(website): add hackathon guide redirect #560

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading