mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-22 07:16:13 +01:00
6 lines
191 B
JavaScript
6 lines
191 B
JavaScript
var minify = require('../../utils/Minify');
|
|
|
|
exports.expressCreateServer = function (hook_name, args, cb) {
|
|
//serve minified files
|
|
args.app.get('/minified/:filename', minify.minifyJS);
|
|
}
|