Auth0未定义。 angular-auth0,angularjs

时间:2018-03-18 20:06:02

标签: angularjs auth0

的package.json:

"angular-auth0": "3.0.0",

app.js

import auth0 from 'angular-auth0';

控制台出错。

angular-auth0.js?2d7e:152 Uncaught ReferenceError: auth0 is not defined

角auth0.js:

/***/ }),
/* 2 */
/***/ (function(module, exports) {

module.exports = auth0;

/***/ })
/******/ ]);

使用webpack。

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

您很可能错过 auth0-js 包。 https://www.npmjs.com/package/auth0-js

执行命令

npm install auth0-js

其他可能的解决方案: https://github.com/auth0/angular-auth0/issues/28

require('angular-auth0/src');