Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8bef66 commit 8d55188Copy full SHA for 8d55188
api/server.js
@@ -132,9 +132,8 @@ export function run({
132
const server = createServer(app);
133
134
server.listen(port, () => {
135
- // eslint-disable-line no-console
136
- console.log(`API Server is now running on http://localhost:${port}`);
137
- console.log(`API Subscriptions server is now running on ws://localhost:${port}${SUBSCRIPTIONS_PATH}`);
+ console.log(`API Server is now running on http://localhost:${port}`); // eslint-disable-line no-console
+ console.log(`API Subscriptions server is now running on ws://localhost:${port}${SUBSCRIPTIONS_PATH}`); // eslint-disable-line no-console
138
});
139
140
// eslint-disable-next-line
0 commit comments