For performance reasons, I want to deliver some of my files from a CDN.

Is it possible to configure the "asset" helper such that it automaticly sets something like "static1.xxxx.com/css/main.css" and "static2.xxxx.com/css/main.css"?

Perhaps something like:

{{ asset('css/main.css',static1) }}
link|improve this question
Downvote is ok but why? ;) – Stony Sep 9 '11 at 8:01
As you can see stackoverflow.com may not be the best place to ask question regards sf2 since there isn't yet any efficient way to receive support with symfony 2 I think the following proposal is a very good idea! - A new Q&A site for symfony2 - Please join & spread the word! – Xuni Nov 20 '11 at 0:39
feedback

1 Answer

up vote 1 down vote accepted

in in config.yml just add something like:

framework:
    templating:
      engines: ['twig']
      assets_base_urls:
        http: [http://yourcdn.com]
link|improve this answer
Thx for your answer. And how can i use it in twig? Do you have an example? – Stony Feb 3 at 9:53
In twig then you can just say {{ asset('myasset.css') }} – alex.pilon Mar 13 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.