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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tunnel.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cstunnel",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Instant localhost tunnel with automatic subdomain assignment",
5
5
  "main": "src/index.js",
6
6
  "bin": {
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://app.cloudstudio.site';
38
+ const SERVER_URL = 'wss://cloudstudio.site';
39
39
 
40
40
  /** Create tunnel connection */
41
41
  function createTunnel({ localPort, localHost, reconnect }) {