rsnext/test/integration/api-support/pages/api/index.js
Lukáš Huvar bbcb448e87 Fix index.js for API routes (#8112)
This fixes the problem with `/pages/api/index.js` not creating serverless function. Fixes #8111
2019-07-25 17:39:29 +00:00

3 lines
65 B
JavaScript

export default (req, res) => {
res.send('Index should work')
}