Hi everyone,
I'm deploying my first Dancer2 app, and I want to use different CSS+JS files in development and production. What are good ways to do this? (simple, maintainable)
The solution I've imagined so far is to have two separate list of files, and manually include one or the other into my layout with Template::Toolkit's <% INCLUDE filename %>. There must be a better way.
Unfortunately, I haven't found how to access environment variables inside the layout file.