You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support custom configuration to the Express server (#273 by @cef62):
module.exports={// ...configureServer(app){// `app` is the instance of the express server running react-styleguidistapp.get('/custom-endpoint',(req,res)=>{res.status(200).send({response: 'Server invoked'});});},};