使用 Chrome DevTools MCP 远程调试

1. 启用 Chrome 远程调试 参考:Chrome DevTools MCP 官方文档 打开 chrome://inspect/#remote-debugging 确保 Chrome 版本 ≥ 144 并启用远程调试 2. 在 Cursor 中配置 MCP { "mcpServers": { "chrome-devtools": { "command": "npx", "args": ["chrome-devtools-mcp@latest", "--autoConnect", "--channel=beta"] } } } 3. Prompt 模板 请点击邮箱按钮跳转到邮箱列表用 chrome mcp

March 16, 2026

用 hugo 在 Github Pages 上发布博客

hugo 安装成功 hugo new post/xx.md // 创建文章 hugo server -D // 本地启动服务调试 hugo -D // 生成静态文件到 public/ 目录 问题 deploy 一致失败,报以下错误 Creating deployment with payload: { "artifact_url": "https://pipelines.actions.githubusercontent.com/i7NDiJe6sckpMiQgKJEPbHK39ol64joVbrfBfWuElGyIPZzm9e/_apis/pipelines/1/runs/13/artifacts?artifactName=github-pages&%24expand=SignedContent", "pages_build_version": "26b486ee6204e9df792692b5a91daffc45880070", "oidc_token": "***" } Failed to create deployment for 26b486ee6204e9df792692b5a91daffc45880070. {"message":"Deployment request failed for 26b486ee6204e9df792692b5a91daffc45880070 due to in progress deployment. Please cancel 8e52d20341103fba0f42d25d5c4e3a6a716b897b first or wait for it to complete.","documentation_url":"https://docs.github.com/rest/reference/repos#create-a-github-pages-deployment"} Error: Error: Request failed with status code 400 Error: Error: Request failed with status code 400 Sending telemetry for run id 1997691410 日期显示问题 about 导航没出现 首页每篇文章展示首段,可仿照 月光博客

March 17, 2022