Skip to content

Instantly share code, notes, and snippets.

@casesandberg
Created November 7, 2016 20:35
Show Gist options
  • Save casesandberg/880746bf3695c633ad90a884232d8581 to your computer and use it in GitHub Desktop.
Save casesandberg/880746bf3695c633ad90a884232d8581 to your computer and use it in GitHub Desktop.
Express + React Router
app.use(express.static('src'))
app.get('*', (request, response) => {
response.sendFile(path.resolve(__dirname, '../src', 'index.html'))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment