服务端 渲染 - nextjs
初始化项目
1 | npx create-next-app |
如果想要添加特殊配置有以下选择
--ts
,--typescript
使用TypeScript-e
,--example [name][github-url]
使用样例--example-path
--use-npm
应用
页面路由 Router
nextjs 路由匹配规则
/pages/example.js
|/pages/example/index.js
匹配路由/example
/pages/example/[id].js
匹配路由/example/1
/pages/example/[...args].js
匹配路由/example/1/2.../n
/pages/example/[[...args]].js
匹配路由/example/.../n
1 | // /example/[id].js |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment
DisqusValine