Skip to content

Commit

Permalink
compress output
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Axel 'fREW' Schmidt committed Sep 26, 2015
1 parent af0f807 commit 55ebcc7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app.psgi
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
use 5.14.0;
use warnings;

use Plack::Builder;

use WWW::RetroPie::Game::Picker;

WWW::RetroPie::Game::Picker->new->to_app;
builder {
enable "Deflater",
content_type => ['text/css','text/html','text/javascript','application/javascript'],
vary_user_agent => 1;

WWW::RetroPie::Game::Picker->new->to_app;
};

0 comments on commit 55ebcc7

Please sign in to comment.