This commit is contained in:
2020-02-08 13:37:13 +03:00
commit 672e09abb5
21 changed files with 650 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
const express = require("express");
const app = express();
app.use(express.static(__dirname + "/dist"));
app.listen(8090, () => console.log("Listening on port 8090!"));
module.exports = app;