We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
本地测试开发时设置的一些域名用这个whitelist,chrome会报EMPTY_RESPONSE的错误,我看源码中这块是针对某类后缀做统一设置的,建议加入local、dev、test等常用的本地测试用域名。
if (suffix == "cn") { return true; }
修改为:
if (suffix == "cn" || suffix == "local" || suffix == “dev” || suffix == "test") { return true; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
本地测试开发时设置的一些域名用这个whitelist,chrome会报EMPTY_RESPONSE的错误,我看源码中这块是针对某类后缀做统一设置的,建议加入local、dev、test等常用的本地测试用域名。
修改为:
The text was updated successfully, but these errors were encountered: