0

我最近两天都在尝试这个,没有任何运气。我使用登山扣来处理我网站 amitavroy.com 上的资产

当我将登山扣的配置投入生产时,我的 js 文件被合并和压缩但由于某种原因,css 文件甚至没有被合并忘记压缩。

4

1 回答 1

0

我知道这是一个老话题,但也许这会帮助其他新手。

 $this->load->library('carabiner');
    $carabiner_config = array(
        'script_dir' => 'js/',
        'style_dir' => 'css/',
        'cache_dir' => 'cache/',
        'base_uri' => base_url(),
        'combine' => TRUE,
        'dev' => FALSE,
        'minify_js' => TRUE,
        'minify_css' => TRUE     // <- this should do the trick
    );
    $this->carabiner->config($carabiner_config);
于 2013-09-27T13:47:41.543 回答