我知道命令" ng服务"在记忆中创造我所有的东西。
现在我有这样的网址:http://localhost:4200/some-angular-route 但我想要这个网址:http://localhost:4200/ 子文件夹 / some-angular-route
我的问题是如何创建这样一个"子文件夹"?我的问题是,在我的生产环境中,请求通过Spring Boot Zuul进行,并且URL上有前缀。
答案 0 :(得分:8)
您可以按如下方式设置基本href
@NgModule({
imports: [
RouterModule.forRoot(routes)
],
declarations: [AppComponent],
providers: [{ provide: APP_BASE_HREF, useValue: '/urlPrefix' }]
})
export class AppModule { }
此外,在构建代码时,可以按如下方式给出--directory和--baseHref。
ng build --d /mySubFolder/ --bh /urlPrefix/