in reply to CSS and PSGI
If you reference your CSS file as "/static/funky.css" in your template, then this should work:
Update: minor editsuse Plack::Builder; my $app = sub { ... }; builder { enable "Static", path => qr!^/static!, root => '/Library/WebServer +/Documents'; $app; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: CSS and PSGI
by Anonymous Monk on Aug 19, 2015 at 14:28 UTC | |
by tangent (Parson) on Aug 19, 2015 at 14:38 UTC | |
by tiny_monk (Sexton) on Aug 19, 2015 at 15:07 UTC |