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
看到一个相似的问题,但是没解决方案 #915
(公司规定代码不能暴露,我就贴个本地的服务模拟CDN)
开启了umi配置dynamicImport, 代码自动拆分为如下形式
配置publicPath为CDN地址,html script标签引入的资源可以正常加载, 加载路径为CDN地址
项目使用了token校验,访问服务器上资源需要在请求头加上token, 所以将静态资源上传到CDN访问规避token校验,子项目单独访问publicPath都正确
但是子项目在主项目内加载的时候,异步资源不使用子项目内配置的publicPath加载,使用了entry的地址
start里fetch方法只能重写html里script标签的请求
excludeAssetFilter方法返回true之后js加载就异常了,这个配置也不能开
看了编译后的代码后发现问题了
请问这个assetPublicPath能自定义么, 如不能,这种情况怎么处理
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happens?
看到一个相似的问题,但是没解决方案 #915
(公司规定代码不能暴露,我就贴个本地的服务模拟CDN)
开启了umi配置dynamicImport, 代码自动拆分为如下形式
配置publicPath为CDN地址,html script标签引入的资源可以正常加载, 加载路径为CDN地址
项目使用了token校验,访问服务器上资源需要在请求头加上token, 所以将静态资源上传到CDN访问规避token校验,子项目单独访问publicPath都正确
但是子项目在主项目内加载的时候,异步资源不使用子项目内配置的publicPath加载,使用了entry的地址
start里fetch方法只能重写html里script标签的请求
excludeAssetFilter方法返回true之后js加载就异常了,这个配置也不能开
看了编译后的代码后发现问题了
请问这个assetPublicPath能自定义么, 如不能,这种情况怎么处理
相关环境信息
The text was updated successfully, but these errors were encountered: