w3c / IntersectionObserver

Intersection Observer
https://www.w3.org/TR/intersection-observer/
Other
3.62k stars 523 forks source link

import 'intersection-observer' not work #413

Closed oimos closed 4 years ago

oimos commented 4 years ago

Is it possible to use import in a JS file to use this polyfill?

import 'intersection-observer'

Or do I need to add below in my webpack.config.js?

require('intersection-observer')
impeiran commented 4 years ago

using import 'intersection-observer' in a JS file powered by webpack is fine :)

oimos commented 4 years ago

Thank you! It works. I wanted to confirm so now I feel I'm on the right track :)