如何直接在当前文件夹中创建next.js应用

How to create a next.js app directly in the current folder

如何在当前文件夹中创建下一个应用程序?

我试过了:

npx create-next-app@latest .  --ts --use-npm

但是我得到错误:

Could not create a project called "folderName" because of npm naming restrictions:
 * name can no longer contain capital letters

如果您正在使用 linux 或 mac 试试这个

npx create-next-app@latest ./ --ts --use-npm

它在 linux 和 mac

上对我都有效