CodeSleeve / asset-pipeline

This Laravel 4 package provides a very simple and easy to use asset pipeline. It was heavily inspired by the Rails asset pipeline. We make use of the wonderful Assetic package to help with pre-compliation!
http://www.codesleeve.com
MIT License
489 stars 53 forks source link

Specify which path is assigned to which route. #227

Closed GiamPy5 closed 9 years ago

GiamPy5 commented 9 years ago

Hello, what I'd like to know is if it's possible to assign a specific path of the asset-pipeline to a specific route.

For example, I want

'paths' => array(
    'app/assets/images/dogs',
    'lib/assets/images/dogs',
    'provider/assets/images/dogs'
),

routed to

http://application.com/assets/dogs

instead of

http://application.com/assets

Is it possible?