1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/test/integration/serverless
Tim Neutkens 07c6e2852f
Export render instead of default for serverless target (#5979)
Extends on #5927, instead of `.default` we'll expose `.render` which is semantically more correct / mirrors the naming of the custom server API.

I've updated the spec in #5927 to reflect this change.

(copied from #5927):

```js
const http = require('http')
const page = require('./.next/serverless/about.js')
const server = new http.Server((req, res) => page.render(req, res))
server.listen(3000, () => console.log('Listening on http://localhost:3000'))
```
2019-01-02 14:59:28 +01:00
..
components Serverless Next.js (#5927) 2018-12-28 11:39:12 +01:00
pages Serverless Next.js (#5927) 2018-12-28 11:39:12 +01:00
test Serverless Next.js (#5927) 2018-12-28 11:39:12 +01:00
next.config.js Serverless Next.js (#5927) 2018-12-28 11:39:12 +01:00
run-server.js Serverless Next.js (#5927) 2018-12-28 11:39:12 +01:00
server.js Export render instead of default for serverless target (#5979) 2019-01-02 14:59:28 +01:00