function createUrl()

in studio/components/monaco/index.tsx [106:109]


    function createUrl(hostname: string, port: number, path: string): string {
      const protocol = location.protocol === 'https:' ? 'wss' : 'ws'
      return normalizeUrl(`${protocol}://${hostname}:${port}${path}`)
    }