Html semantic elements support for old browser with polyfills #15836
-
I found in next Js blog article that next js provide old browser support with polyfills. Does that mean it supports HTML semantic elements, other js syntax like intersection observer API etc.? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Next.js itself works in IE11 (and newer) browsers https://nextjs.org/docs/basic-features/supported-browsers-features Next provides a few polyfills for user code but any additional polyfills/support for older browsers within your own code would need to be polyfilled independently by you. Next provides these JS polyfills for older browsers by default. Next does not polyfill all newer HTML/CSS/JS features for older browsers, so you would need to bring your own polyfills for certain features. |
Beta Was this translation helpful? Give feedback.
Next.js itself works in IE11 (and newer) browsers https://nextjs.org/docs/basic-features/supported-browsers-features
Next provides a few polyfills for user code but any additional polyfills/support for older browsers within your own code would need to be polyfilled independently by you.
Next provides these JS polyfills for older browsers by default.
Next does not polyfill all newer HTML/CSS/JS features for older browsers, so you would need to bring your own polyfills for certain features.