This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gractwo-pl/next.config.js

56 lines
1003 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
async redirects() {
return [
{
source: "/discord",
destination: "https://discord.gg/NBXq95C",
statusCode: 307,
},
{
source: "/dc",
destination: "/discord",
statusCode: 307,
},
{
source: "/dsc",
destination: "/discord",
statusCode: 307,
},
{
source: "/github",
destination: "https://github.com/gractwo",
statusCode: 307,
},
{
source: "/gh",
destination: "/github",
statusCode: 307,
},
{
source: "/youtube",
destination: "https://www.youtube.com/channel/UCM5O0ltiO_ZigZiP-Wa28Ew",
statusCode: 307,
},
{
source: "/yt",
destination: "/youtube",
statusCode: 307,
},
{
source: "/twitter",
destination: "https://twitter.com/gractwo",
statusCode: 307,
},
{
source: "/twt",
destination: "/twitter",
statusCode: 307,
},
];
},
};
module.exports = nextConfig;