2023-05-16
npx create-next-app myblog
注意,项目名称不能用大写,比如Myblog,我也不知道为啥有这么奇葩的规定。可以看官方说明。
npx create-next-app@latest nextjs-blog --use-npm --example "https://github.com/vercel/next-learn/tree/master/basics/learn-starter"
注:—use-npm 指用npm安装依赖包,默认是yarn。可以使用其他模板。
npx create-next-app --typescript myblog
npx create-next-app --tailwind myblog
npx create next-app --example with-tailwindcss my-project
注意,也可以创建后再安装tailwindcss。
cd myblog
npm run dev
打开 http://localhost:3000 页面,查看效果,相当 beautiful。