在 Azure Web 应用程序中使用 Docsify 时出错

Error using Docsify in an Azure Web App

我正在尝试 运行 Docsify 在 Azure Web 应用程序中。我收到一个 404,看起来好像我在配置站点时缺少某些东西,也许?

Failed to load resource: the server responded with a status of 404 (Not Found)
index.html/README.md 

有没有人在 Azure Web 应用程序中成功使用 Docsify

我找到了答案。您需要允许 IIS 提供降价文件。您可以通过将以下内容添加到您的 web.config(或者如果您还没有 web.config,则将此 添加为 您的 web.config

<configuration>
  <system.webServer>
    <staticContent>
      <remove fileExtension=".md" />
      <mimeMap fileExtension=".md" mimeType="text/markdown" />
    </staticContent>
  </system.webServer>
</configuration>

Doscify GitHub 上的问题是 here

我用过这个

window.$docsify = {
      homepage: 'readme.md'
}