Initial version of run-report

This commit is contained in:
2022-09-20 13:00:47 -05:00
parent f1300d2db9
commit 734c2b4ea0
7 changed files with 248 additions and 28 deletions

View File

@ -36,4 +36,12 @@ module.exports = function (app)
changeOrigin: true,
}),
);
app.use(
"/download/*",
createProxyMiddleware({
target: "http://localhost:8000",
changeOrigin: true,
}),
);
};