config.js 164 B

123456789
  1. let path = require('path')
  2. let config = {
  3. host: 'localhost',
  4. port: '8080',
  5. document: path.resolve(__dirname, '..', 'public')
  6. }
  7. module.exports = config