fix: temporarily forward all requests to instance (even static assets)

This commit is contained in:
Ben Allfree 2023-01-23 15:23:39 +00:00
parent 34b44fa27f
commit f1c6ced111

View File

@ -305,7 +305,7 @@ export const instanceService = mkSingleton(
;(await proxyService()).use(
(subdomain) => subdomain !== PUBLIC_APP_DB,
['/api(/*)', '/_(/*)'],
['/api(/*)', '/_(/*)', '(/*)'],
async (req, res, meta) => {
const { subdomain, host, proxy } = meta