Memo

20231101 37cgvgwu

VS Code 中使用 Chrome 调试网页的启动配置 `json { "version": "0.2.0", "configurations": [ { "type": "chrome", "request": "launch", "name": "Launch Chrome against localhost", "url": "http://localhost:3000",...

VS Code 中使用 Chrome 调试网页的启动配置

{
 "version": "0.2.0",
 "configurations": [
 {
 "type": "chrome",
 "request": "launch",
 "name": "Launch Chrome against localhost",
 "url": "http://localhost:3000",
 "runtimeArgs": [
 "--disable-web-security",
 "--enable-precise-memory-info"
 ],
 "userDataDir": true
 }
 ]
}