connect.js 334 B

1234567891011121314151617181920
  1. module.exports = function(config) {
  2. return {
  3. dev: {
  4. options: {
  5. port: 5601,
  6. hostname: '*',
  7. base: config.srcDir,
  8. keepalive: true
  9. }
  10. },
  11. dist: {
  12. options: {
  13. port: 5605,
  14. hostname: '*',
  15. base: config.destDir,
  16. keepalive: true
  17. }
  18. },
  19. }
  20. };