Get StartedInstallationNext

Next

Install and configure Next.

1

Create a new project

npx create-next-app@latest my-app
2

After the above command, it is mandatory to select these values in the prompts

Would you like to use TypeScript? Yes
Would you like to use Tailwind CSS? Yes
Would you like to customize the default import alias (@/*)? Yes
What import alias would you like configured? @/*
3

Start the app

cd my-app && npm run dev