├── .gitignore ├── .upignore ├── README.md ├── package.json ├── pages ├── about.js └── index.js ├── server.js ├── up.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next -------------------------------------------------------------------------------- /.upignore: -------------------------------------------------------------------------------- 1 | !.next -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mununki/nextjs-with-lambda/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mununki/nextjs-with-lambda/HEAD/package.json -------------------------------------------------------------------------------- /pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mununki/nextjs-with-lambda/HEAD/pages/about.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- 1 | export default () =>
Hi~ I'm running on Lambda.
; 2 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mununki/nextjs-with-lambda/HEAD/server.js -------------------------------------------------------------------------------- /up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mununki/nextjs-with-lambda/HEAD/up.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mununki/nextjs-with-lambda/HEAD/yarn.lock --------------------------------------------------------------------------------