Add correct directory to archive when vpk is not provided
[app-web-vpkbuilder.git] / app.psgi
1 #!/usr/bin/perl
2 use v5.14;
3 use warnings;
4
5 use Plack::Builder;
6 use App::Web::VPKBuilder;
7
8 builder {
9 enable 'ContentLength';
10 enable Static => path => qr!^/static/!;
11 App::Web::VPKBuilder->new->to_app
12 };
13
14 __END__
This page took 0.021496 seconds and 4 git commands to generate.