美文网首页
chunkjs 运行时设置路径

chunkjs 运行时设置路径

作者: Allan要做活神仙 | 来源:发表于2019-05-21 10:52 被阅读0次
// For chunk.js path
let jsPath;
const scripts = Array.prototype.slice.call(document.scripts).reverse();
scripts.some(script => {
    if (script.getAttribute("jspathanchor") === "true") {
        jsPath = script
            .getAttribute("src")
            .replace(/main\.js(\?(t|dd_cache)=.+)?$/, "");
        return true;
    }
    return false;
});
__webpack_public_path__ = jsPath;

相关文章

网友评论

      本文标题:chunkjs 运行时设置路径

      本文链接:https://www.haomeiwen.com/subject/qmedzqtx.html