我跟着Getting Started tutorial跟着Angh的Auth0,我不太清楚具体指令的哪一部分意味着:
安装auth0.js后,将其添加到您的构建系统,或使用脚本标记将其带入您的项目。
我刚刚开始使用Angular和Auth0,所以我认为这是一个相当简单的任务,但我似乎无法找到任何关于如何具体去做的事情。我对捆绑服务有点熟悉,我很确定这涉及到什么。但是从那里开始,我不确定涉及哪些文件。
我从Angular-cli中重新安装了Angular,并使用
安装了auth0feature('HotLinks',0); % temporarily disable bolded headers (matlab.internal.display.isHot=false)
disp(myTable)
feature('HotLinks',1); % restore the standard behavior (matlab.internal.display.isHot=true)
答案 0 :(得分:1)
安装auth0.js后,将其添加到构建系统或使用脚本标记将其添加到项目中。
含义:您可以添加:
<script type="text/javascript" src="node_modules/auth0-js/build/auth0.js"></script>
或
<script src="https://cdn.auth0.com/js/auth0/8.10.1/auth0.min.js"></script>
到位于项目文件夹中的index.html页面:
或者将其添加到build system.
答案 1 :(得分:1)
从@ Andresson的链接,似乎将它添加到构建系统的方式是在scripts
属性下的 .angular-cli.json 文件中。我需要添加以下内容,似乎得到了预期的结果
"scripts": [
"../node_modules/auth0-js/build/auth0.js"
]