pdfviewer/bower_components/pdf.js-viewer/Gruntfile.js
2023-07-21 16:54:28 +05:30

23 lines
402 B
JavaScript

module.exports = function (grunt) {
'use strict';
grunt.loadNpmTasks('grunt-css-prefix');
grunt.initConfig({
css_prefix: {
libname: {
options: {
prefix: '.pdfjs ',
punctuation: ''
},
files: {
'build/web/viewer.css': ['source/web/viewer.css']
}
}
}
});
grunt.registerTask('default', ['css_prefix']);
};