How to add Bootstrap 5 in Next.js
Create next app:
To create a project, run:
npx create-next-app@latest
# or
yarn create next-app
If you want to start with a TypeScript project you can use the --typescript flag:
npx create-next-app@latest --typescript
# or
yarn create next-app --type...
blog.yoblogger.com2 min read