We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37a72ce commit f2c3261Copy full SHA for f2c3261
src/node/routes/domainProxy.ts
@@ -65,7 +65,7 @@ router.all(/.*/, async (req, res, next) => {
65
const isAuthenticated = await authenticated(req)
66
if (!isAuthenticated) {
67
// Let the assets through since they're used on the login page.
68
- if (req.path.startsWith("/static/") && req.method === "GET") {
+ if (req.path.startsWith("/_static/") && req.method === "GET") {
69
return next()
70
}
71
0 commit comments