diff --git a/server/index.js b/server/index.js index 8872b253..b75d3577 100644 --- a/server/index.js +++ b/server/index.js @@ -134,6 +134,10 @@ app.get('*', (req, res) => { return res.status(404).send('Static asset not found.'); } + if (req.url === '/_status.json') { + return res.status(200).send({ status: 'ok' }); + } + const context = {}; // Get handle to tokenStore