在我的本地计算机上,我使用ng serve --base-href "/grant
运行该解决方案,并且我的网站和路由正常运行。在部署并通过构建运行ng build --base-href /grant/
时,输出的网站具有错误的链接路由,而未添加/ grant /。我也尝试了ng build --base-href "/grant
,但没有成功
我的路线:
const routes: Routes = [
{
path: '',
component: SetupComponent
},
{
path: 'new-login',
component: NewLoginComponent
}