我无法登录我的netlify cms管理面板,基本上它是托管在Github上的带有自定义域的 jekyll 主题。
当我单击登录按钮时,它会在控制台上显示以下错误
我无法登录我的netlify cms管理面板,基本上它是托管在Github上的带有自定义域的 jekyll 主题。
当我单击登录按钮时,它会在控制台上显示以下错误
NetlifyCMS 配置 ( config.yml
) 使用 Netlifygit-gateway
进行身份验证。在页面admin/index.html
中,您需要在脚本之前加载身份小部件客户端netlify-cms
脚本。
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Manager</title>
<script src="https://identity-js.netlify.com/v1/netlify-identity-widget.js"></script>
</head>
<body>
<!-- Include the script that builds the page and powers Netlify CMS -->
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
</body>
</html>
该脚本仅放置在主要的默认布局中。