diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-30 08:16:46 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-30 08:16:46 +0100 |
| commit | d3fc14f4ef3498f1c38aae0a2d8d3e5a4a3cf79e (patch) | |
| tree | 2cfe041da980f288ef73ec31779c404875653384 /174bg/website | |
| parent | f5191ecd828308bacc13208a4f8d34061a25c0c3 (diff) | |
| download | unnamed-group-master.tar unnamed-group-master.tar.gz unnamed-group-master.tar.bz2 unnamed-group-master.tar.xz unnamed-group-master.zip | |
Diffstat (limited to '174bg/website')
| -rw-r--r-- | 174bg/website/next.config.mjs | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/174bg/website/next.config.mjs b/174bg/website/next.config.mjs index 218fe4a..6f2522b 100644 --- a/174bg/website/next.config.mjs +++ b/174bg/website/next.config.mjs @@ -2,7 +2,48 @@ const nextConfig = { /* config options here */ reactCompiler: true, + output: "standalone", + + async redirects() { + return [ + { + source: "/discord", + destination: "https://discord.gg/RGgSfVj4DD", + permanent: true, + }, + { + source: "/handbook", + destination: "https://handbook.174bg.net", + permanent: true, + }, + { + source: "/docs", + destination: "https://handbook.174bg.net", + permanent: true, + }, + { + source: "/manager", + destination: "https://manager.174bg.net", + permanent: true, + }, + { + source: "/login", + destination: "https://manager.174bg.net", + permanent: true, + }, + { + source: "/database", + destination: "https://db.174bg.net", + permanent: true, + }, + { + source: "/db", + destination: "https://db.174bg.net", + permanent: true, + }, + ]; + }, }; export default nextConfig; |
