mstar
mstar
vscode调试断点灰色的解决: **### 检查auto attach是否开启,最新版本vscode,1.42.1版本,开启auto attach后右下角显示**  并且命令窗口下有  ### **我这边最新版这个功能默认是个disable的状态,需要在设置中开启**  开启后可以直接命令egg-bin debug开启调试,我觉得每次输入命令麻烦就还是用F5,launch.json配置如下,并且可以直接重启调试: ``` { "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "启动程序", "runtimeExecutable": "npm", "runtimeArgs": [...
``` //config.default.js auth: { ignore: [ ctx => ctx.urlMatch('post', '/v1/login'), ctx => ctx.urlMatch('get', '/v1/gifshow/qrcode'), ctx => ctx.urlMatch('post', '/v1/session'), ctx => ctx.urlMatch('post', '/v1/admin'), ctx => ctx.urlMatch('put', '/v1/order'), ctx => ctx.urlMatch('get', '/v1/courierCompany'),...
#https://github.com/eggjs/egg/issues/4243
Same problem