10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
|
const generate = require('videojs-generate-postcss-config');
|
||
|
|
||
|
module.exports = function(context) {
|
||
|
const result = generate({}, context);
|
||
|
|
||
|
// do custom stuff here
|
||
|
|
||
|
return result;
|
||
|
};
|