git fetch //Fetch all remote branches.
git checkout yourBranchName //Switch branches or restore working tree files
git pull origin yourBranchName //Fetch from and integrate with another repository or a local branch
git rebase mainBranchName yourBranchName //Reapply commits on top of another base tip
git push --force origin yourBranchName // Update remote refs along with associated objects forcefully
我要在这里完成的是:
hostname.com/api/v1/anyurl在转到后端时应变为hostname.com/anyurl。 hostname.com/anyurl应该保持为hostname.com/anyurl并转到前端。
/ api / v1重写似乎可以正常工作,但是所有进入前端的URL都将重写为/。 我需要的是仅适用于/ api / v1路径的重写规则
答案 0 :(得分:0)
我想这应该对您有用-
@import "~bootstrap/scss/bootstrap.scss";// this worked
我刚刚编辑了此文件,它对我有用,请检查一下。我想我们可以解决问题