You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
317 B
11 lines
317 B
const generate = require('videojs-generate-rollup-config');
|
|
|
|
// see https://github.com/videojs/videojs-generate-rollup-config
|
|
// for options
|
|
const options = {};
|
|
const config = generate(options);
|
|
|
|
// Add additonal builds/customization here!
|
|
|
|
// export the builds to rollup
|
|
export default Object.values(config.builds);
|
|
|