base.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. # 一些基本配置
  3. $config['base'] = array
  4. (
  5. # 名称
  6. 'name' => '橙猫小程序',
  7. # 版本配置
  8. 'version' => '1.0.0 Beta',
  9. # 微信小程序登录地址
  10. 'wechat' => 'https://api.weixin.qq.com/sns/jscode2session',
  11. # 登录验证key
  12. 'secret' => 'chengmao2018_898930',
  13. );
  14. $config['template'] = array
  15. (
  16. # 使用的模板 注意:定义这个之后,将会强制将本项目模板(assets中的html、template)变成这个
  17. 'assets' => 'default',
  18. # 定义这个之后,将强制将template的目录改为这个,不定义或不填写,则强制使用为template定义
  19. 'template' => 'default',
  20. # 替换设置 一般用于替换资源,将模板中的(html中的)js等相对url换成绝对url,如果不定义,则默认为../js这样的
  21. 'replace' => array
  22. (
  23. 'css' => '../css/',
  24. 'js' => '../js/',
  25. 'img' => array('../image/', '../img/', '../images/'),
  26. 'core' => '../../core/',
  27. 'lib' => '../lib/',
  28. 'manage' => '../manage/',
  29. # 以下的替换主要用于合并操作(host里的merge项)
  30. 'font' => '../fonts/',
  31. ),
  32. 'strip' => true,
  33. # 是否启用layout 如启用,填写要替换的class或者id即可,具体效果可参考youtube,只加载部分内容,前端请加载pjax.js
  34. 'layout' => '.pjax-content',
  35. );
  36. return $config;