diff --git a/server.js b/server.js index 6d65e28f2..a9fd0cede 100644 --- a/server.js +++ b/server.js @@ -6,7 +6,7 @@ const fs=require("fs"); const app = express(); const port = 3000; -app.use(express.static("./dist/")); +app.use(express.static("./")); app.listen(port, function() { console.log("server start"); open('http://localhost:' + port + '/index.html');