基础资料/yii2-cdn

Yii2 cdn 资产

安装: 27

依赖: 0

建议者: 0

安全: 0

星星: 2

关注者: 2

分支: 0

开放问题: 0

类型:yii2-extension

dev-master 2016-10-28 18:17 UTC

This package is auto-updated.

Last update: 2024-09-26 06:18:35 UTC


README

安装

安装此扩展的首选方式是通过 composer

php composer.phar require --prefer-dist "enchikiben/yii2-cdn" "*"

或者

"enchikiben/yii2-cdn" : "*"

配置

'components' => [
    'cdn' => [
        'class' => 'enchikiben\cdn\CDNComponent',
        'domains' => [
            '//static.example.com',
            '//static2.example.com',
            '//static2.example.com'
        ]
    ]
],

'bootstrap' => [
    'cdn'
],