Skip to content

Commit

Permalink
add redirect for signup flyer
Browse files Browse the repository at this point in the history
  • Loading branch information
pigrammer3 committed Sep 19, 2024
1 parent 77ca57e commit ffabc5c
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,23 @@ const nextConfig = {
async redirects() {
return [
{
source: '/mm24f1', // Merrimack 2024 Flyer #1
destination: '/mm24',
source: "/mm24f1", // Merrimack 2024 Flyer #1
destination: "/mm24",
permanent: false,
},
{
source: '/mm24',
destination: 'https://www.buacademy.org/stuco/9-14-mayhem-in-merrimack/',
source: "/mm24",
destination: "https://www.buacademy.org/stuco/9-14-mayhem-in-merrimack/",
permanent: false,
}
]
}
},
{
source: "/qr/2",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSfeiw1gEi50dhyFuxfNosJI_SDrOAF-ez6BP9hnxDnIEyg7ig/viewform?usp=sf_link",
permanent: false,
},
];
},
};

module.exports = nextConfig;

0 comments on commit ffabc5c

Please sign in to comment.