Skip to content

Commit 28ea19a

Browse files
committed
Change wepback.config.js to use esm & webpack output to use esm
1 parent 5be87d2 commit 28ea19a

File tree

3 files changed

+20800
-18748
lines changed

3 files changed

+20800
-18748
lines changed

api/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,9 @@ const api = async (req, res) => {
101101
app.get("/api", api);
102102

103103
if (process.env.NODE_ENV !== "test") {
104-
app.listen(port, () => {});
104+
app.listen(port, () => {
105+
console.log(`GRS express server listening on port ${port}`);
106+
});
105107
}
106108

107109
export default api;

0 commit comments

Comments
 (0)