创建一个 Next.js 应用,node版本要高,16.5以上
npm淘宝镜像切为https://registry.npmmirror.com
npm config set registry https://registry.npmmirror.com
npx create-next-app@latest//安装后 使用npm run dev 启动
Next.js 是围绕着 页面(pages) 的概念构造的。一个页面(page)就是一个从 pages
目录下的 .js
、.jsx
、.ts
或 .tsx
文件导出的 React 组件。
页面(page) 根据其文件名与路由关联。例如,pages/about.js
被映射到 /about
。甚至可以在文件名中添加动态路由参数。
在你的项目中创建一个 pages
目录。
为 ./pages/index.js
文件填充如下内容:
function HomePage() {return <div>Welcome to Next.js!</div>
}export default HomePage
未完待续。。。