File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ var compress = require("compression");
66var sockjs = require ( "sockjs" ) ;
77var StreamCache = require ( "stream-cache" ) ;
88var http = require ( "http" ) ;
9- var spdy = require ( "spdy " ) ;
9+ var https = require ( "https " ) ;
1010var httpProxyMiddleware = require ( "http-proxy-middleware" ) ;
1111var serveIndex = require ( "serve-index" ) ;
1212var historyApiFallback = require ( "connect-history-api-fallback" ) ;
@@ -321,7 +321,7 @@ function Server(compiler, options) {
321321 options . https . cert = options . https . cert || fs . readFileSync ( path . join ( __dirname , "../ssl/server.crt" ) ) ;
322322 options . https . ca = options . https . ca || fs . readFileSync ( path . join ( __dirname , "../ssl/ca.pem" ) ) ;
323323
324- this . listeningApp = spdy . createServer ( options . https , app ) ;
324+ this . listeningApp = https . createServer ( options . https , app ) ;
325325 } else {
326326 this . listeningApp = http . createServer ( app ) ;
327327 }
You can’t perform that action at this time.
0 commit comments