How can I include a CSS file in my HTML file with a HTML render in Node.js?
Here's what I do:
<link rel="stylesheet" type="text/css" href="./general.css" />
And then is the error when I'm going to localhost:8333/general.css:
Cannot GET /general.css
My module renderer script is the following:
app.set('views', __dirname);
app.engine('html', engines.mustache);
app.set('view engine', 'html');
How should I do it?