build / auth0.js net :: ERR_ABORTED 404(未找到)

时间:2019-02-25 17:09:22

标签: angular auth0

我正在尝试按照说明将auth0集成到我的Angular中 应用from this tutorial

不幸的是,那里的说明有很多空白。当我启动应用程序或尝试执行身份验证时,我会在Chrome开发者控制台中看到以下信息:

GET http://localhost:3000/node_modules/auth0-js/build/auth0.js 
net::ERR_ABORTED 404 (Not Found)

我能够运行它们为您生成的示例应用程序,但这并没有太大帮助。我希望能够按照提供的步骤来逐步构建应用程序。

任何人都可以帮助我了解问题所在吗?

谢谢

1 个答案:

答案 0 :(得分:0)

我认为您需要从项目中删除此行:

<script type="text/javascript" src="node_modules/auth0-js/build/auth0.js"></script>

并将“ node_modules / auth0-js / build / auth0.js”放入“ angular.json”中的脚本块。

....
"scripts": [
    "src/client/assets/someExampleScript.js",
    "node_modules/auth0-js/build/auth0.js"
],
....

look at that