Replies: 1 comment 1 reply
-
产物的静态资源 // .umirc.ts
publicPath: process.env.NODE_ENV === 'production' ? 'https://domain.com/path/' : '/' |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我们项目有个需求是要把资源托管到cdn,并支持cdn访问失败时回退到之前的url。
也就是生成的index.html中,umi打包进去的"./umi.js"和"./umi.css"需要修改为"https://cdn.cn/umi.js","https://cdn.cn/umi.css"
这个需求怎么实现呢?
我需要判断出所有umi打包添加的js和css路径,排除掉原本不需要修改的路径,也就是document.ejs中已有的js。
有没有什么api或钩子函数可以修改打包后输出的umi.js和umi.css路径的?
Beta Was this translation helpful? Give feedback.
All reactions