UNPKG

open-next-cdk

Version:

Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK

47 lines (44 loc) 1 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>NextJS CDK Placeholder</title> <meta name="description" content="A placeholder website" /> <style> body, html { margin: 0; height: 100%; display: grid; color: #fffbf9; font-family: monospace; background-color: #2e4a56; } section { margin: auto; text-align: center; } h1 { font-size: 3rem; text-align: center; } p { font-size: 24px; } a { color: #e27152; } </style> </head> <body> <section> <h1>NextJS CDK</h1> <p>This is a placeholder.</p> <p>Probably you want to connect to your local NextJS dev server.</p> <p> Please feel free to peruse <a href="https://constructs.dev/packages/cdk-nextjs-standalone">the documentation</a> for this NextJS construct. </p> </section> </body> </html>