作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 npm 将 angular-fontawesome 安装到 angular 应用程序中,如提到的 in github
在开发模式下工作正常。但是在生产构建中出现错误。
当然最初的错误是
NullInjectorError: StaticInjectorError(Do)[qm -> t]: StaticInjectorError(Platform: core)[qm -> t]: NullInjectorError: No provider for t!
"optimization": false,
...
"buildOptimizer": true,
NullInjectorError: StaticInjectorError(AppModule)[FaIconComponent -> FaConfig]: StaticInjectorError(Platform: core)[FaIconComponent -> FaConfig]: NullInjectorError: No provider for FaConfig!
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
@NgModule({
declarations: [...],
imports: [
...
FontAwesomeModule
],
import { faEllipsisV, ... } from '@fortawesome/free-solid-svg-icons';
"dependencies": {
"@angular/animations": "~8.2.11",
"@angular/cdk": "~8.2.3",
"@angular/common": "~8.2.11",
"@angular/compiler": "~8.2.11",
"@angular/core": "~8.2.11",
"@angular/forms": "~8.2.11",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "~8.2.11",
"@angular/platform-browser-dynamic": "~8.2.11",
"@angular/router": "~8.2.11",
"@fortawesome/angular-fontawesome": "^0.6.0-alpha.0",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"bootstrap": "^4.3.1",
"classlist.js": "^1.1.20150312",
"hammerjs": "^2.0.8",
"ngx-bootstrap": "^5.2.0",
"ngx-cookie-service": "^2.2.0",
"ngx-webstorage-service": "^4.1.0",
"rxjs": "~6.4.0",
"tslib": "^1.10.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.9.1"
}
8.3.12.
最佳答案
这是最新版本 0.6.0-alpha.0 中的一个问题,当您不指定版本时,它可能会自动安装。
https://github.com/FortAwesome/angular-fontawesome/issues/210
您可以降级到版本 0.5.0 以解决此 AOT 构建错误:
npm i @fortawesome/angular-fontawesome@0.5.0
关于angular - NullInjectorError : No provider for FaConfig,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58990996/
我是一名优秀的程序员,十分优秀!