Skip to content

Instantly share code, notes, and snippets.

@simenbrekken
Created December 7, 2016 16:37
Show Gist options
  • Save simenbrekken/f8f51341c42fae749b060b33b3a4a56d to your computer and use it in GitHub Desktop.
Save simenbrekken/f8f51341c42fae749b060b33b3a4a56d to your computer and use it in GitHub Desktop.
MIME Based History Fallback Middleware
import express from 'express'
import path from 'path'
import mime from 'mime'
const app = express()
app.use(express.static(buildPath))
app.use((req, res, next) => {
if (req.method === 'GET' && mime.lookup(req.path) === mime.default_type) {
res.sendFile('index.html')
return
}
next()
})
@einarlove
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment