Learn the Application Features
Explore the fundamental features of a Next.js application including folder structure and user authentication. Learn how to run the app, navigate through login and signup pages, and understand token-based authentication to secure user profiles. This lesson helps you set up and interact with the app, preparing you to test API and UI workflows effectively.
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: []
}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!.
Note ...