Skip to content

Commit

Permalink
Update Next.js version in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
canac committed Nov 19, 2024
1 parent 51cd9f0 commit e44f0d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MPDX

This is a [Next.js 12](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). This application is not free to re-create from this source code (see [LICENSE](./LICENSE)). If you wish to host your own version of
This is a [Next.js 13](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). This application is not free to re-create from this source code (see [LICENSE](./LICENSE)). If you wish to host your own version of
this application, please reach out to [[email protected]](mailto:[email protected]) to start the discussions.

## Environments
Expand Down Expand Up @@ -114,7 +114,7 @@ If you need them, request a developer to send you the values to these env variab

## Directory Structure

This project uses the Next.js 12 Pages Router, which you can learn more about [here](https://nextjs.org/docs/pages). Next.js provides a file-based router, so the directory structure the filenames of pages in the `pages/` directory determines their URL. For example, `pages/accountLists/[accountListId]/reports/expectedMonthlyTotal.page.tsx` will handle URLs like `/accountLists/01234567-89ab-cdef-0123-456789abcdef/reports/expectedMonthlyTotal`. The page is rendered on the server as HTML so that the user can see the content and not a blank page while React and the page's components load. Once the JavaScript loads and the page "hydrates", the page will be interactive. You can learn more about hydration in React [here](https://react.dev/reference/react-dom/client/hydrateRoot).
This project uses the Next.js 3 Pages Router, which you can learn more about [here](https://nextjs.org/docs/pages). Next.js provides a file-based router, so the directory structure the filenames of pages in the `pages/` directory determines their URL. For example, `pages/accountLists/[accountListId]/reports/expectedMonthlyTotal.page.tsx` will handle URLs like `/accountLists/01234567-89ab-cdef-0123-456789abcdef/reports/expectedMonthlyTotal`. The page is rendered on the server as HTML so that the user can see the content and not a blank page while React and the page's components load. Once the JavaScript loads and the page "hydrates", the page will be interactive. You can learn more about hydration in React [here](https://react.dev/reference/react-dom/client/hydrateRoot).

`pages/_app.page.tsx` is a wrapper for all pages and contains setup for various React context providers that the application uses.

Expand Down

0 comments on commit e44f0d9

Please sign in to comment.