tangled
alpha
login
or
join now
openstatus.dev
/
openstatus
6
fork
atom
Openstatus
www.openstatus.dev
6
fork
atom
overview
issues
pulls
pipelines
fix: www
Maximilian Kaske
5 months ago
ca96c824
8eab80d7
+4
-3
1 changed file
expand all
collapse all
unified
split
apps
web
next.config.js
+4
-3
apps/web/next.config.js
···
100
100
{ type: "cookie", key: "sp_mode", value: "new" },
101
101
{
102
102
type: "host",
103
103
-
value: "(?<domain>.+)",
103
103
+
value:
104
104
+
"^(?!.*\\.openstatus\\.dev$)(?!openstatus\\.dev$)(?<domain>.+)$",
104
105
},
105
106
],
106
106
-
destination: "https://stpg.dev/:domain/:path*",
107
107
+
destination: "https://www.stpg.dev/:domain/:path*",
107
108
},
108
109
],
109
110
};
···
137
138
138
139
// Automatically tree-shake Sentry logger statements to reduce bundle size
139
140
disableLogger: true,
140
140
-
}
141
141
+
},
141
142
);