Struggling to figure out how to exclude my layout in express. I attempted:
response.render("index",{layout: false});
However, this resulted in the css being disabled on the page. Am I overlooking something? What is the most effective method for disabling the layout while retaining the css?
Additionally, I have integrated
app.use(express.static("public"));
and stored my css in the public folder.