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