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
如下代码
https://github.com/easy-team/easywebpack/blob/master/utils/utils.js#L58
utils.normalizePublicPath = publicPath => { publicPath = `${publicPath.replace(/\/$/, '')}/`; if (!utils.isHttpOrHttps(publicPath) && !/^\//.test(publicPath)) { publicPath = `/${publicPath}`; } return publicPath; };
上述代码中publicPath被强制设置成绝对路径,是否可以支持设置相对路径
The text was updated successfully, but these errors were encountered:
@WinfredWang not support relative path
Sorry, something went wrong.
No branches or pull requests
如下代码
https://github.com/easy-team/easywebpack/blob/master/utils/utils.js#L58
上述代码中publicPath被强制设置成绝对路径,是否可以支持设置相对路径
The text was updated successfully, but these errors were encountered: