Office 加载项任务窗格找不到 html 文件

Office Add-in Taskpane can't find html file

为 Outlook 开发 Office Web 加载项。我按照这个 tutorial 开始了我的项目。

我尝试实现一个新的任务窗格,但是当我打开它时出现此错误:Failed to load resource: the server responded with a status of 404 (Not Found)

当我尝试在 https://localhost:3000/src/taskpane/taskpane.html 访问 de sideloading 时,该页面仅包含 Cannot GET /src/taskpane/taskpane.html.

清单中没有错误,我更新了 webpack.config.js 为:

entry: {
  polyfill: ["core-js/stable", "regenerator-runtime/runtime"],
  taskpane: "./src/taskpane/taskpane.js"
}


new HtmlWebpackPlugin({
    filename: "taskpane.html",
    template: "./src/taskpane/taskpane.html",
    chunks: ["polyfill", "taskpane"]
  })

我不知道我错过了什么,有人可以帮忙吗?

找到了我的问题,我几乎做对了所有事情。我输入的是完整路径,但我只需要像这样指定文件名:https://localhost:3000/taskpane.html