美文网首页
2023-10-26 nextjs hello world

2023-10-26 nextjs hello world

作者: 豪威Howie | 来源:发表于2023-10-25 11:53 被阅读0次
# 创建项目目录
mkdir you_project
# 进入项目目录
cd you_project
# 初始化package.json
npm init -y
# 安装依赖包
npm install --save react react-dom next
# 创建一个pages文件夹
mkdir pages

修改package.json


  "scripts": {
    "dev": "next",
    "build": "next build",
    "start": "next start"
  }

在pages下创建 index.js

const Index = () => (
  <div>
    <p>Hello World!</p>
  </div>
)
export default Index

运行

npm run dev

相关文章

网友评论

      本文标题:2023-10-26 nextjs hello world

      本文链接:https://www.haomeiwen.com/subject/dhyeidtx.html