Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.

Ensure Express doesn't serve index.html for / #271

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lessons/13-server-rendering/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ import routes from './modules/routes'

// ...

//Don't send index.html as a static file (let app.get('*',..) process it
app.use(express.static(path.join(__dirname, 'public'), {index: false}))


// send all requests to index.html so browserHistory works

app.get('*', (req, res) => {
Expand Down