-
Notifications
You must be signed in to change notification settings - Fork 11
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
Change Html base tag #36
Comments
Unfortunately, the duty of changing the HTML base tag is over the cover area of this library. However, you can change the HTML base tag dynamically in various ways.
Are there any options in the above list to fit your case? |
@HTTPThanhLuan You can use this method as well. <environment include="Staging,Production">
<base href="/prod/" />
</environment>
<environment include="Development">
<base href="/dev/" />
</environment> |
Is it possible to change html base tag?
<base href="/" />
The dev and production environment have different href value. I would like to change the value dynamically instead of manually.
The text was updated successfully, but these errors were encountered: