How to modify the reference path when the ng-zorro-ant icon is loaded dynamically?

The

svg icon is loaded dynamically. The default path is http://xxx.com/assets/outline.
. How can I change it to http://xxx.com/valkyrie/stati.?

Dec.13,2021

resolved, use NzIconService to change prefix

export class AppComponent {
  constructor(private _iconService: NzIconService) {
    this._iconService.changeAssetsSource('//admin.bytedance.com/valkyrie/static');
  }
}

Menu