使用 AOT (Ahead-of-Time)编译器来替代 JIT 编译器。AOT 编译器可以将应用程序提前编译成一个静态的 JavaScript 文件,使得应用程序的加载速度更快,而且可以更好的优化应用程序的性能和安全。以下是如何使用 AOT 编译器:
ng build --aot
"angularCompilerOptions": {
"genDir": "./aot",
"skipTemplateCodegen": true
}
import { JitCompiler } from '@angular/compiler';
import { COMPILER_OPTIONS, CompilerFactory } from '@angular/core';
@NgModule({
providers: [
{
provide: COMPILER_OPTIONS,
useValue: {
// Options for JitCompiler
},
multi: true
},
{
provide: CompilerFactory,
useClass: JitCompilerFactory,
deps: [COMPILER_OPTIONS]
}
]
})
export class AppModule {
}
通过这些步骤,你可以在 Angular 14 中解决 JIT 编译器不可用的问题。