Next.js allows you to configure the target browsers (for Autoprefixer and compiled #css features) through Browserslist. To customize browserslist, create a browserslist key in your package.json. #javascript #reactjs
// package.json
{
"browserslist": [">0.3%", "not ie 11", "not dead", "not op_mini all"]
}