skip to Main Content

Starting server loads HTML but not CSS or JPG

This is server.js which I am starting in cmd using node server.js: const express = require("express"); const path = require("path"); const app = express(); const port = 3000; app.use(express.static('/public')); app.get("/", (req, res)=>{ res.sendFile(path.join(__dirname, "views/index.html")); }); app.listen(port); This is a section…

VIEW QUESTION
Back To Top
Search