diff --git a/src/js/video.js b/src/js/video.js index 41044ce438..9fa76b346c 100644 --- a/src/js/video.js +++ b/src/js/video.js @@ -31,6 +31,7 @@ import xhr from 'xhr'; // Include the built-in techs import Tech from './tech/tech.js'; import { use as middlewareUse, TERMINATOR } from './tech/middleware.js'; +import defineLazyProperty from './utils/define-lazy-property.js'; /** * Normalize an `id` value by trimming off a leading `#` @@ -566,5 +567,7 @@ videojs.dom = Dom; */ videojs.url = Url; +videojs.defineLazyProperty = defineLazyProperty; + export default videojs;