v4.1.0 to v5.0.0
This guide helps you migrate your project from v4.1.0
to v5.0.0
. We have upgraded the template to Next.js 15 and Material-UI 6, and there are some important changes that you need to incorporate in your project.
Before proceeding, it is strongly recommended to compare your package.json
with the new package.json
to ensure all dependencies are updated.
For additional details on updating the template, please refer to the How to update this template? guide.
Next.js v15 Changes
We have upgraded to Next.js 15, which introduces some important changes. Please follow the official migration guide for detailed information. Below are some of the changes that we have made in our template:
-
As cookies, headers, params etc are now Asynchronous, you will need to update how they are handled, For example:
// Before
const mode = getServerMode()
// After
const mode = await getServerMode() -
Renamed
next.config.mjs
tonext.config.ts
ornext.config.js
. -
Update
tsconfig.json
- "next.config.mjs"
+ "next.config.ts" // for TypeScript
+ "next.config.js" // for JavaScript
MUI v6 Changes
We have tried to mention the major changes related to Material-UI 6 in the template. Please follow the official migration guide for more information.
-
The
CssVarsProvider
andextendTheme
APIs are now stable. As part of this, we have removedExperimental_CssVarsProvider
andexperimental_extendTheme
, and replaced them with the stableThemeProvider
andcreateTheme
API. -
In MUI 6, the
Grid
component has been deprecated and replaced withGrid2
. Update all instances ofGrid
toGrid2
, and adjust thesize
prop accordingly.- import Grid from '@mui/material/Grid'
+ import Grid from '@mui/material/Grid2'- <Grid item xs={12} sm={6} md={3}>
+ <Grid size={{ xs: 12, sm: 6, md: 3 }}> -
Since the
TextField
component'sInputProps
prop and some other slot props are now deprecated, you should replaceInputProps
withslotProps
and make the necessary adjustments. For more information, please refer to the TextField Props Migration Guide.- <TextField InputProps={{ startAdornment: (<InputAdornment position='start'><i className='ri-search-line' /></InputAdornment>)}} />
+ <TextField slotProps={{ input: { startAdornment: (<InputAdornment position='start'><i className='ri-search-line' /></InputAdornment>)}}} />
Please use the Compare Folders extension to compare the changes in the template and your project. As it is not possible to mention all the changes here, this extension will help you to find the changes easily.
Please check the how to update this template guide for more information.