1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- $config['base'] = array
- (
-
- 'name' => '橙猫小程序',
-
- 'version' => '1.0.0 Beta',
- );
- $config['template'] = array
- (
-
- 'assets' => 'default',
-
- 'template' => 'default',
-
- 'replace' => array
- (
- 'css' => '../css/',
- 'js' => '../js/',
- 'img' => array('../image/', '../img/', '../images/'),
- 'core' => '../../core/',
- 'lib' => '../lib/',
- 'manage' => '../manage/',
-
-
- 'font' => '../fonts/',
- ),
-
- 'strip' => true,
-
- 'layout' => '.pjax-content',
- );
- return $config;
|