Answers for "node express link css"

CSS
0

how to use custom stylesheets express node

app.use(express.static(__dirname + '/public'));

<link rel='stylesheet' href='/style.css' />
Posted by: Guest on May-04-2020
-1

add css to express app

app.use(express.static(path.join(__dirname,"public")));
Posted by: Guest on January-16-2021

Browse Popular Code Answers by Language