-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
60 lines (59 loc) · 1.64 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
minimumCacheTTL: 31536000,
remotePatterns: [
{
protocol: "https",
hostname: "cdn-images.mailchimp.com",
port: "",
pathname: "/icons/social-block-v3/block-icons-v3/*.png",
},
],
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
async redirects() {
return [
{
source: "/mm24f1", // Merrimack 2024 Flyer #1
destination: "/mm24",
permanent: false,
},
{
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,
},
{
source: "/join-2024",
destination:
"https://docs.google.com/forms/d/e/1FAIpQLSfeiw1gEi50dhyFuxfNosJI_SDrOAF-ez6BP9hnxDnIEyg7ig/viewform?usp=sf_link",
permanent: false,
},
{
source: "/crowdfunding",
destination: "https://crowdfunding.bu.edu/campaigns/lobstah-bots",
permanent: false,
},
{
source: "/donate",
destination:
"https://trusted.bu.edu/s/1759/22/form.aspx?sid=1759&gid=2&pgid=3962&cid=7331&dids=359&bledit=1&appealcode=WEBBUA",
permanent: false,
},
];
},
};
module.exports = nextConfig;