您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

12 行
240 B

  1. const path = require('path');
  2. const Application = require('thinkjs');
  3. const instance = new Application({
  4. ROOT_PATH: __dirname,
  5. APP_PATH: path.join(__dirname, 'src'),
  6. proxy: true, // use proxy
  7. env: 'production'
  8. });
  9. instance.run();