From 7c1ac89be94656c9d09205f11cce7d20efc58611 Mon Sep 17 00:00:00 2001 From: Adam Trager Date: Wed, 14 Dec 2022 10:39:48 -0500 Subject: [PATCH] not ie 11 is dead (#44029) `not ie 11` is now included in `dead` by browserslist: https://browsersl.ist/#q=defaults%2C+not+ie+11%2C+not+dead ## Documentation / Examples - [x] Make sure the linting passes by running `pnpm build && pnpm lint` - [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md) --- docs/advanced-features/customizing-postcss-config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-features/customizing-postcss-config.md b/docs/advanced-features/customizing-postcss-config.md index a51dd45ce2d0165..25b864316e7ba6b 100644 --- a/docs/advanced-features/customizing-postcss-config.md +++ b/docs/advanced-features/customizing-postcss-config.md @@ -76,7 +76,7 @@ To customize browserslist, create a `browserslist` key in your `package.json` li ```json { - "browserslist": [">0.3%", "not ie 11", "not dead", "not op_mini all"] + "browserslist": [">0.3%", "not dead", "not op_mini all"] } ```