Openstatus www.openstatus.dev

fix: destination

+3 -3
+3 -3
apps/web/next.config.js
··· 102 102 value: "(?<slug>[^.]+)\\.(openstatus\\.dev|localhost)", 103 103 }, 104 104 ], 105 - // NOTE: we don't need the slug `/:slug/:path*` here because it will already be applied in the rewrites in the status-page app as subdomain 106 - destination: `http://${NEW_HOST}/:path*`, 105 + // NOTE: might be different on prod and localhost (without :slug) 106 + destination: `http://${NEW_HOST}/:slug/:path*`, 107 107 }, 108 108 ], 109 109 }; ··· 137 137 138 138 // Automatically tree-shake Sentry logger statements to reduce bundle size 139 139 disableLogger: true, 140 - }, 140 + } 141 141 );