Created
December 7, 2016 16:37
-
-
Save simenbrekken/f8f51341c42fae749b060b33b3a4a56d to your computer and use it in GitHub Desktop.
MIME Based History Fallback Middleware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tested in https://github.com/unfold/avinor-next/commit/bc73f9faca19e80b944a83b1c7edc22717699a36 and works as expected