Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Latest commit

 

History

History
executable file
·
20 lines (17 loc) · 772 Bytes

routing.md

File metadata and controls

executable file
·
20 lines (17 loc) · 772 Bytes

This project is built on next.js and follows the basic [next route rules](https://github.com/zeit/next .js#routing).

Simply put, the directory structure is the route. The files under the pages directory are all the routes of the project. These pages support server-side rendering:

.
├── _app.js
├── _document.js
├── _error.js
├── discovery.js
├── community.js
├── index.js
├── job.js
├── post.js
├── repo.js
├── user.js
└── video.js

In addition, the request will go through the custom middle layer of the express server before reaching these pages. For details, please see server.js