You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Next.js v13 introduced the new routing model, App Router, which supports server side components and requires a new project structure. This epic is to track the router migration process from page to app.
Note
The specifics of epic may be continuously adjusted/updated during the development as needed (e.g., encountering an unexpected errors, add, update, or remove issues)
Page Meta Tags (in progress - this section still needs to be defined)
Currently meta tags are added to pages using components/shared/PageTitle. However, next/head has been replaced by the new built-in SEO Metadata API, and we need to adjust the way we handle metadata in each route.
Refactor the globally shared PageTitle component
Add to app router
Data Fetching (in progress - this section still needs to be defined)
--- in progress: editing ---
Context
Next.js v13 introduced the new routing model, App Router, which supports server side components and requires a new project structure. This epic is to track the router migration process from
page
toapp
.Note
The specifics of epic may be continuously adjusted/updated during the development as needed (e.g., encountering an unexpected errors, add, update, or remove issues)
The issues tracked by this epic as follows:
Problem or idea
This section will be filled later.
Page Meta Tags (in progress - this section still needs to be defined)
Currently meta tags are added to pages using
components/shared/PageTitle
. However,next/head
has been replaced by the new built-in SEO Metadata API, and we need to adjust the way we handle metadata in each route.PageTitle
componentapp
routerData Fetching (in progress - this section still needs to be defined)
Resource: Migrating Data Fetching Methods, Data Fetching
Note
The
getServerSideProps
,getStaticProps
, andgetInitialProps
methods have been replaced with a simpler API.app
routerProject Reorganization (in progress - this section still needs to be defined)
Colocation, Project Organization Features
We'll restructure and organize the project's folders/files.
Solution or next step
The text was updated successfully, but these errors were encountered: