Skip to content

Commit

Permalink
Change wepback.config.js to use esm & webpack output to use esm
Browse files Browse the repository at this point in the history
  • Loading branch information
HwangTaehyun committed Oct 4, 2022
1 parent 5be87d2 commit 28ea19a
Show file tree
Hide file tree
Showing 3 changed files with 20,800 additions and 18,748 deletions.
4 changes: 3 additions & 1 deletion api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ const api = async (req, res) => {
app.get("/api", api);

if (process.env.NODE_ENV !== "test") {
app.listen(port, () => {});
app.listen(port, () => {
console.log(`GRS express server listening on port ${port}`);
});
}

export default api;
Loading

0 comments on commit 28ea19a

Please sign in to comment.