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
devServer配置中支持proxy传递数组
devServer
proxy
module.exports = { //... devServer: { proxy: [{ context: ['/auth', '/api'], target: 'http://localhost:3000', }] } };
目前发现只支持对象和字符串的形式
建议能支持传递数组
The text was updated successfully, but these errors were encountered:
和#2320重复了
Sorry, something went wrong.
No branches or pull requests
What problem does this feature solve?
devServer
配置中支持proxy
传递数组目前发现只支持对象和字符串的形式
What does the proposed API look like?
建议能支持传递数组
The text was updated successfully, but these errors were encountered: