http-server with localhost:3000 gives ERR_INVALID_REDIRECT

后端 未结 6 1456
半阙折子戏
半阙折子戏 2020-12-19 06:08

I have installed http-server using the following command:

npm i -g http-server

Upon running the server I get the response saying Running o

6条回答
  •  鱼传尺愫
    2020-12-19 06:19

    Try downgrading the http-server version as the latest version (0.10.0 and 0.11.0) is causing issue due to ecstatic (3.3.2).

    Try uninstalling the current http-server version and then try to install 0.9.0 or older version

    Uninstall

     npm uninstall -g http-server
    

    Install

    npm install http-server@0.9.0
    

提交回复
热议问题