在Angular 7中使用CDN的解决方法如下所示:
Angular App
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
@NgModule({
declarations: [
// 组件声明
],
imports: [
BrowserModule
// 其他模块导入
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
if (environment.production) {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule)
.catch(err => console.error(err));
这样就可以使用Angular 7和CDN来构建应用程序。当你运行应用程序时,它将从CDN加载Angular的依赖项并将其引入应用程序中。