Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 442 Bytes

codeStructure.md

File metadata and controls

19 lines (10 loc) · 442 Bytes

Code structure

The code is broken up into a number of sections, some of which are dictated by next.js itself

/pages

Contains both pages and api endpoints

/pages/api

Contains api endpoints that are file system routed in exactly the same way that normal pages are.

/src

Contains all the rest of the source code

/tests

Contains all the tests and test related utility code