prepare for prod
This commit is contained in:
@@ -15,6 +15,7 @@ app.use('/api/profile', require('./routers/api/profile'))
|
||||
app.use('/api/posts', require('./routers/api/posts'))
|
||||
|
||||
// Serve static assets in production
|
||||
|
||||
if (process.env.NODE_ENV==='production'){
|
||||
app.use(express.static('client/build'));
|
||||
app.get('*',(req, res)=>[
|
||||
@@ -22,6 +23,7 @@ if (process.env.NODE_ENV==='production'){
|
||||
])
|
||||
}
|
||||
|
||||
|
||||
const PORT = process.env.PORT || 5000;
|
||||
|
||||
app.listen(PORT,()=> console.log(`Server started on port ${PORT}`));
|
||||
|
||||
Reference in New Issue
Block a user