We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec6137 commit 6c130e3Copy full SHA for 6c130e3
components/SocialMedia.js
@@ -43,7 +43,7 @@ function SocialMedia(props) {
43
</a>
44
<a
45
className="icon-link"
46
- href="https://discord.gg/eWmzKsY"
+ href="/discord"
47
target="_blank"
48
rel="noreferrer noopener"
49
aria-label="ACM at UCLA on Discord"
next.config.js
@@ -1,4 +1,14 @@
1
module.exports = {
2
+ async redirects() {
3
+ return [
4
+ {
5
+ source: '/discord',
6
+ destination: 'https://discord.gg/eWmzKsY',
7
+ permanent: false, // 302 redirect
8
+ },
9
+ ];
10
11
+
12
output: 'standalone',
13
images: {
14
remotePatterns: [
0 commit comments