-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: set deploy URL as runtime property #630
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
March 21, 2021 15:19
0876388
to
46cd114
Compare
dhhyi
changed the title
feat: dynamic deploy url
feat: set deploy URL as runtime property
Mar 21, 2021
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
March 27, 2021 16:44
46cd114
to
b876fc2
Compare
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
April 2, 2021 13:41
b876fc2
to
a4402f8
Compare
I have to take this back to WIP as it breaks |
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
April 17, 2021 13:29
a4a7063
to
4b96efa
Compare
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
April 17, 2021 18:35
4b96efa
to
c618d58
Compare
dhhyi
changed the base branch from
develop
to
feature/translations-output-hashed
April 17, 2021 18:38
dhhyi
force-pushed
the
feature/translations-output-hashed
branch
from
April 17, 2021 18:49
8c725de
to
828dc50
Compare
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
April 17, 2021 18:50
c618d58
to
6285fe2
Compare
wait for integration of #655 |
dhhyi
force-pushed
the
feature/translations-output-hashed
branch
from
April 18, 2021 19:09
828dc50
to
4b07610
Compare
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
2 times, most recently
from
April 20, 2021 07:55
c4ceb80
to
ed6433c
Compare
dhhyi
force-pushed
the
feature/translations-output-hashed
branch
2 times, most recently
from
June 3, 2021 12:09
658afe8
to
ba32a09
Compare
Closes AB#64439 |
shauke
force-pushed
the
develop
branch
2 times, most recently
from
July 7, 2021 08:10
e9b21fc
to
09c2765
Compare
dhhyi
added a commit
that referenced
this pull request
Jul 22, 2021
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
July 22, 2021 10:13
9763b31
to
ce9cac1
Compare
dhhyi
added a commit
that referenced
this pull request
Jul 22, 2021
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
July 22, 2021 11:10
ce9cac1
to
5004f9e
Compare
dhhyi
added a commit
that referenced
this pull request
Jul 29, 2021
dhhyi
force-pushed
the
feat/dynamic-deploy-url
branch
from
July 29, 2021 14:01
5004f9e
to
d0f0e45
Compare
Co-authored-by: Marcus Schmidt <marcus.schmidt@intershop.de>
jometzner
force-pushed
the
feat/dynamic-deploy-url
branch
from
July 30, 2021 08:08
d0f0e45
to
561a4c6
Compare
jometzner
previously approved these changes
Jul 30, 2021
marschmidt89
approved these changes
Jul 30, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
documentation review done
jometzner
approved these changes
Jul 30, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Type
[x] Feature
What Is the Current Behavior?
Deploy URL in links to static resources is sometimes used relatively and sometimes absolute.
Issue Number: Closes #624
What Is the New Behavior?
The deploy URL (which can be set for default Angular projects with
ng build --deploy-url
) can be set via environment variableDEPLOY_URL
to the SSR process.If not set, the default deployment URL
/
is applied, which ensures, all static assets are correctly loaded from the deployment root.This PR also makes it possible to use deeply nested
baseHref
s with a Multi-Channel context path setup.This PR depends on #655 to make the Angular application independent on the
DEPLOY_URL
.Does this PR Introduce a Breaking Change?
[ ] Yes
[x] No
TODO
AB#65697