Open ssalenger opened 10 years ago
I'd love to see support for Harp multihost. It's a simple addition:
Add multihost: false to the default variables, and then, after if (options.server):
multihost: false
if (options.server)
} else if (options.multihost) { harp.multihost(source, { port: options.port }, function () { console.log('Harp serving multiple sites on port %d', options.port) });
@shovon I've actually made these changes on a branch, but don't have permission to push. I'm happy to help move this along in any way that's helpful. Thanks!
I'd love to see support for Harp multihost. It's a simple addition:
Add
multihost: false
to the default variables, and then, afterif (options.server)
: