Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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) }}
share|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

1 Answer

up vote 4 down vote accepted

in in config.yml just add something like:

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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