Skip to content

Commit

Permalink
Update static file directory to 'docs'
Browse files Browse the repository at this point in the history
Changed the static file directory from 'public' to 'docs' to better
reflect the content being served.
  • Loading branch information
joone committed Mar 24, 2024
1 parent d05f832 commit 5a59103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const express = require("express");
const app = express();
const PORT = process.env.PORT || 3000;

app.use(express.static("public"));
app.use(express.static("docs"));

app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
Expand Down

0 comments on commit 5a59103

Please sign in to comment.