fix minify route path; update deprecated calls

This commit is contained in:
Tom Hunkapiller 2015-04-10 05:52:58 -05:00
parent 4385598de6
commit de67714cf8
3 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ exports.expressCreateServer = function (hook_name, args, cb) {
// Minify will serve static files compressed (minify enabled). It also has
// file-specific hacks for ace/require-kernel/etc.
args.app.all('/static/:filename', minify.minify);
args.app.all('/static/:filename(*)', minify.minify);
// Setup middleware that will package JavaScript files served by minify for
// CommonJS loader on the client-side.