-
Notifications
You must be signed in to change notification settings - Fork 21
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
Could you also allow localhost:${port} in DOMAIN_REGEX? #323
Comments
Hey @shuuuuun and thanks for opening this suggestion. We've received similar questions to this in the past but since imgix does not support locally-served images, a change like this would be considered out of scope for a library like this. I would be curious to hear more about your use case and how this feature helps to support it. Thanks! |
@sherwinski Thanks for your reply! My use case is as follows.
I am using vue-imgix in my case, but I think this issue is not limited to that. If there is a way to work around this without changing the library, I would be interested to know. Thank you. |
Hey @shuuuuun, thank you for providing more details and apologies for the delayed follow-up here. To answer each of your questions:
Having said that, I will bring this issue up in our next team meeting and see what others think as well. I will update this thread once I have more information. |
Hi @shuuuuun, After discussing it further with the team, we've ultimately decided not to support this request. The reason being that this library is meant to facilitate the reliable construction of URLs tied to the imgix rendering service. By expanding the validation rules, we are losing the ability to guarantee that reliability. And while we generally try to leave wiggle room for developer convenience, doing so in this case to support images not served through imgix feels a bit too out of scope for this project. Apologies and hope you can understand our position. With that said, I think there is another workaround that you could considering using in your case. Instead of using import URLBuilder from '@imgix/js-core';
let ub = new URLBuilder({
domain: process.env.NODE_ENV === 'production' ? 'sherwinski.imgix.net' : 'sherwinski.imgix.local',
}); Then edit your local hosts file so that # /etc/hosts
127.0.0.1 sherwinski.imgix.local Hopefully this helps you. I am going to close this issue for now but please feel free to comment back if any other questions come up. Edit: Assuming you want to specify the port, you will likely need to set up a reverse proxy as the hosts files only handles hostnames. |
Thank you for your consideration. In my case, the workaround of switching img and ix-img seems to be a good one. Thanks for providing a good service and library. |
Before you submit:
Is your feature request related to a problem? Please describe.
When using
ImgixClient._buildURL
in the development environment, I am having trouble with an error if the url contains http://localhost:3000.Describe the solution you'd like
I think adding a regular expression in
DOMAIN_REGEX
that allowslocalhost:${port}
would solve the problem.Describe alternatives you've considered
I am not aware of an alternative.
If there is a way to work around this, I would appreciate it.
Additional context
I am checking with v3.3.0, but the latest version v3.6.0 seems to be the same.
Where the error occurs:
https://github.com/imgix/js-core/blob/v3.3.0/src/index.js#L31-L36
https://github.com/imgix/js-core/blob/v3.6.0/src/index.js#L31-L36
DOMAIN_REGEX
definition:https://github.com/imgix/js-core/blob/v3.3.0/src/constants.js#L4
https://github.com/imgix/js-core/blob/v3.6.0/src/constants.js#L4
My actual environment uses
vue-imgix
, which internally usesImgixClient._buildURL
.https://github.com/imgix/vue/blob/v2.9.0/src/plugins/vue-imgix/vue-imgix.ts#L47-L70
https://github.com/imgix/vue/blob/v2.9.0/src/plugins/vue-imgix/vue-imgix.ts#L76-L83
In my use case:
Thank you.
The text was updated successfully, but these errors were encountered: