aboutsummaryrefslogtreecommitdiff
path: root/174bg
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-30 08:16:46 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-30 08:16:46 +0100
commitd3fc14f4ef3498f1c38aae0a2d8d3e5a4a3cf79e (patch)
tree2cfe041da980f288ef73ec31779c404875653384 /174bg
parentf5191ecd828308bacc13208a4f8d34061a25c0c3 (diff)
downloadunnamed-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')
-rw-r--r--174bg/website/next.config.mjs41
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;