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