You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 regels
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();