在Windows10 npm live-server命令中,^C在git bash上不起作用:
npm live-server
^C
发布于 2020-03-03 13:44:44
看看使用winpty ( git bash附带的)是否有帮助:
winpty liveserver
这将启动您的服务器,但也将侦听信号(如CTRL+C)
https://stackoverflow.com/questions/60438405
相似问题