Answer the question
In order to leave comments, you need to log in
Why are styles not included for dynamic node.js pages?
Good afternoon guys, I have such a problem that I can’t connect styles to dynamic pages, writes 404 css.
router.get('/user/:id?', async (req, res, next) => {
const getProfile = req.params.id;
const dataProfile = await User.findOne({
where: {
username: getProfile
}
});
console.log(dataProfile);
res.render('user', {getProfile });
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question