用下面的命令可以迁移,但是执行后一直卡在那里无任何响应
ng g @angular/core:standalone
对应的 node 进程内存一直在涨
另外一个项目迁移完成了,但使用 angular material 的 component 没有自动添加对应的 material module 的 import,需要自己手动添加,比如
@Component({
imports: [MatTooltipModule]
})
@Component({
imports: [MatProgressSpinnerModule]
})
@Component({
imports: [MatProgressBarModule]
})