Я пытаюсь обслуживать мою папку publi c, и я не знаю, почему моя строка express .stati c не работает.
Вот так выглядит моя папка publi c:
public
-images
---img1.png
---blah.png
-js
---app.js
-pages
---index.html
---blah.html
---blah.html
-styles
---styles.css
Вот так выглядит мой код:
const express = require("express");
const app = express();
const PORT = process.env.PORT || 3000;
app.use(express.static("public"));
app.listen(PORT, () => {
console.log(`Server running on port: ${PORT}`);
});