@srfnstack/spliffy 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/server.mjs +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
package/src/server.mjs
CHANGED
|
@@ -114,7 +114,7 @@ export async function startServer (config) {
|
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
app.any('/*', createNotFoundHandler(config))
|
|
117
|
-
app.listen(config.host || '
|
|
117
|
+
app.listen(config.host || '::', config.port, (token) => {
|
|
118
118
|
if (token) {
|
|
119
119
|
log.gne(`Server initialized at ${new Date().toISOString()} and listening on port ${port}`)
|
|
120
120
|
} else {
|