英文:
How can I find the supported browser version for Next.js 12.3?
问题
我想要构建一个由下面图片中的浏览器版本支持的 Next.js 12.3 项目。我已经查看了 https://nextjs.org/docs/architecture/supported-browsers,但我认为那是针对 Next.js 13 的。
我如何找到适用于 Next.js 12.3 的支持浏览器版本?
英文:
I want to build a Next.js 12.3 project supported by the browser versions in the image below. I have checked https://nextjs.org/docs/architecture/supported-browsers, but I think it is for Next.js 13.
This is the requirement for supported browser versions when building the project:
How can I find the supported browser versions for Next.js 12.3?
答案1
得分: 1
默认情况下,Next.js 12 支持 IE11 和所有现代浏览器(Chrome 61、Edge 16、Firefox 60、Opera 48、Safari 11)。您可以查看 Next.js 13 的代码更改是在这里进行的。
英文:
By default, Next.js 12 supports IE11 and all modern browsers (Chrome 61, Edge 16, Firefox 60, Opera 48, Safari 11). You can see where the code change was made for Next.js 13 here.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论