React项 目搭建
· 阅读需 1 分钟
阅读量
0
阅读人次
0
npx create-next-app@latest
修改文件以支持 https:
package.json
{
"scripts": {
"dev": "next dev --hostname 172.16.103.68 --experimental-https",
},
}
安装 Material UI:
npm install @mui/material @emotion/react @emotion/styled
npm run dev # 以开发模式运行 Next.js