mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00
7 lines
181 B
JavaScript
7 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);
|
||
|
}
|