如何使用独立组件启动 angular 项目

how to initiate angular project with standalone component

现在 angular 已经发布了独立组件,我可以启动 angular 只有独立组件并一起删除 NgModule 吗?

是的,您可以使用从 main.ts 文件

中的 @angular/platform-browser 导入的新引入的 bootstrapApplication

这里是完整的代码

import { enableProdMode } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { environment } from './environments/environment';
if (environment.production) {
  enableProdMode();
}
bootstrapApplication(AppComponent)
  .catch(err => console.error(err));