Learn the Application Features
Learn about the features of the login application that will be used for testing.
We'll cover the following...
App creation
A Next.js application is already set up to run. View the appendix for complete installation instructions. First, start the application by clicking the “Run” button below:
module.exports = { presets: ['next/babel'], plugins: [] }
A starter Next.js app
Experiment with the application above by changing the default index.js
file and viewing the updated content. For example, in line 16, we can change Welcome to <a href="https://nextjs.org">Next.js!</a>
to I love Next.js!
.
...