CE-1727 Add proxy for /qqq/*, for new versioned middleware

This commit is contained in:
2024-10-31 16:07:10 -05:00
parent 3adb8ab4ba
commit 4fd50936ea

View File

@ -57,4 +57,5 @@ module.exports = function (app)
app.use("/images", getRequestHandler());
app.use("/api*", getRequestHandler());
app.use("/*api", getRequestHandler());
app.use("/qqq/*", getRequestHandler());
};