Merge pull request #106 from HideyoshiSolutions/hotfix/conserta-docker-image

hotfix: fixes server
This commit is contained in:
2025-11-03 08:49:20 -03:00
committed by GitHub

View File

@@ -15,7 +15,7 @@ app.use(express.static(distFolder, {
})); }));
app.get("/*", (req, res) => { app.get("/*", (req, res) => {
res.sendFile(path.join(`${__dirname}/dist/${PKG_NAME}/index.html`)); res.sendFile(path.join(`${__dirname}/dist/${PKG_NAME}/browser/index.html`));
}); });
app.listen(process.env.PORT || 5000, () => { app.listen(process.env.PORT || 5000, () => {