Project Directory Structure
/Project
/server
/app.js
/Router
/auth.js
/static
/css
/style.css
/img
/image1.png
/views
/index.ejs
Code snippet from Node JS (app.js) file
app.use("static", express.static("static"));
Code snippet from Index.ejs file located within views folder
<link rel="stylesheet" href="../static/css/style.css" >
The page is successfully loading but CSS and images are not displaying
I attempted to modify the code in the NodeJs File with the following block
app.use("../static", express.static("static"));