Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 279 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 279 Bytes

next-lambda

Serve next.js apps with AWS lambda

Based on @now/now-node-Bridge

Set target: "serverless" and deploy.

Usage:

const nextLambda = require("next-lambda");

module.exports = nextLambda({
  routes: {
    "/": "/index",
    "/blog/:name": "/blog"
  }
});