hotfix: fixes server

This commit is contained in:
2025-11-03 08:49:01 -03:00
parent 727c227151
commit 865bf0cef3

View File

@@ -15,7 +15,7 @@ app.use(express.static(distFolder, {
}));
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, () => {