I'm creating my first Node app using Express and Pug (former Jade). Everything is working fine, except getting my css files running on the browser. (Error 404: GET http://localhost:3000/css/syles.css)
Project structure:
server.js
views
bag.pug
public
css
styles.css
My server js file:
const pug = require('pug');
const path = require('path');
const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
const inv = require('./api/pogoni/inventory');
// Set views path
app.set('views', path.join(__dirname, 'views'));
// Set public path
app.use(express.static(path.join(__dirname, 'public')));
// Set pug as view engine
app.set('view engine', 'pug');
// Player's index
app.get('/player', (req, res) => {
res.render('player', {
title: 'PLAYER Dashboard'
});
});
// Player's bag
app.get('/bag', (req, res) => {
inv.getInventory()
.then((inventory) => {
if(!inventory) {
throw new Error('Unable to fetch inventory.');
}
res.render('bag', {
title: 'PLAYER bag',
inventory
});
})
.catch((e) => {
res.status(500, {
error: e
});
});
});
// Start server
app.listen(port, () => {
console.log(`Server is up on port ${port}`);
});
bag.pug
doctype html
html
head
meta(charset='UTF-8')
title #{title}
link(rel='stylesheet', href='/css/syles.css')
You have a typo: syles instead styles
doctype html
html
head
meta(charset='UTF-8')
title #{title}
link(rel='stylesheet', href='/css/styles.css')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With