production.js 169 B

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