在Angular 13中,DeployURL被废弃了。现在,我们需要使用一个新的配置选项来指定应用程序在运行时应该加载哪个基本URL。这个选项叫做baseHref。
要使用baseHref配置选项,有两种方法可以实现。第一种是手动在Angular应用程序的根模块中设置baseHref。示例如下:
在app.module.ts文件中添加代码:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { APP_BASE_HREF } from '@angular/common';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
providers: [ {provide: APP_BASE_HREF, useValue: '/my/app'} ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
在上面的代码中,我们通过APP_BASE_HREF提供程序为当前应用程序提供了一个基本URL。在这种情况下,应用程序将在 /my/app 路径下运行。
第二种方法是使用CLI的新标志--base-href来设置baseHref。我们可以像这样使用它来构建应用程序:
ng build --base-href=/my/app
在上面的命令中,我们使用--base-href标志设置了基本URL为 /my/app。这将导致应用程序在 /my/app 路径下运行。
无论采用哪种方法,我们都需要确保基本URL与部署URL匹配,以便Angular可以正确处理各种资源和链接。