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.
framework/core/hmr.ts
const { location } = window as any const { protocol, host } = location ... const url = (protocol === 'https:' ? 'wss' : 'ws') + '://' + host + '/_hmr' const socket = new WebSocket(url)