We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa6ed1 commit 85faee3Copy full SHA for 85faee3
packages/gatsby/src/utils/start-server.ts
@@ -15,7 +15,6 @@ import {
15
} from "graphql"
16
import { isCI } from "gatsby-core-utils"
17
import http from "http"
18
-import https from "https"
19
import cors from "cors"
20
import telemetry from "gatsby-telemetry"
21
import launchEditor from "react-dev-utils/launchEditor"
@@ -58,7 +57,7 @@ type ActivityTracker = any // TODO: Replace this with proper type once reporter
58
57
59
interface IServer {
60
compiler: webpack.Compiler
61
- listener: http.Server | https.Server
+ listener: http.Server
62
webpackActivity: ActivityTracker
63
cancelDevJSNotice: CancelExperimentNoticeCallbackOrUndefined
64
websocketManager: WebsocketManager
0 commit comments