cstunnel 1.0.0 → 1.0.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/package.json +1 -1
- package/src/tunnel.js +1 -1
package/package.json
CHANGED
package/src/tunnel.js
CHANGED
|
@@ -35,7 +35,7 @@ function getDeviceId() {
|
|
|
35
35
|
return parts.join('_').replace(/[^a-zA-Z0-9_-]/g, '').slice(0, 64) || os.hostname();
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
const SERVER_URL = 'wss://
|
|
38
|
+
const SERVER_URL = 'wss://cloudstudio.site';
|
|
39
39
|
|
|
40
40
|
/** Create tunnel connection */
|
|
41
41
|
function createTunnel({ localPort, localHost, reconnect }) {
|