bootstrap.min.css caching problem.
BartoszBartniczak opened this issue · 3 comments
I was trying to do some demo app today and I was doing it step by step by tutorial. And i have a weird problem. I can add ( to the asset_bundle array) all css files except bootstrap.min.css file. It causes that connection is reset. When i delete that line everything works fine. Have you any idea what causes that problem?
Can you show me the configuration that resets the connection and the configuration that works
I am sorry i have not replied for so long. The commented line causes the problem:
'asset_bundle' => array(
'assets' => array(
'css' => array(
// 'css/bootstrap.min.css',
'css/bootstrap-theme.min.css',
'css/style.css',
),
'js' => array(
'js/jquery.min.js',
'js/bootstrap.min.js'
),
'media' => array('img', 'fonts')
)
),
Do you think that Bootstrap 3 might cause the problem?
Yes you're right. This is because of a bug into lessphp (leafo/lessphp#503), I am trying to change the less compiler with another less compiler : oyejorge/less.php. Any help is welcome