webpack插件给所有的:src文件目录增加前缀

1.webpack4的版本写法

javascript 复制代码
class AddPrefixPlugin {
  apply(compiler) {
    compiler.hooks.compilation.tap('AddPrefixPlugin', (compilation) => {
      HtmlWebpackPlugin.getHooks(compilation).beforeEmit.tapAsync(
        'AddPrefixPlugin',
        (data, cb) => {
          // 使用正则表达式替换所有包含 /static/file/ 的路径
          data.html = data.html.replace(/\/static\/file\//g, '/zhgdxmf/static/file/');
          cb(null, data);
        }
      );
    });
    compiler.hooks.emit.tapAsync('AddPrefixPlugin', (compilation, callback) => {
      // 遍历所有输出的资源文件,替换其中的 /static/file/ 路径
      Object.keys(compilation.assets).forEach((assetName) => {
        if (assetName.endsWith('.js') || assetName.endsWith('.html')) {
          let content = compilation.assets[assetName].source();
          content = content.replace(/\/static\/file\//g, '/zhgdxmf/static/file/');
          compilation.assets[assetName] = {
            source: () => content,
            size: () => content.length
          };
        }
      });
      callback();
    });
  }
}

module.exports = AddPrefixPlugin;

webpack 2 的版本

javascript 复制代码
function AddPrefixPlugin(options) {
  this.options = options || {};
}

AddPrefixPlugin.prototype.apply = function(compiler) {
  compiler.plugin('compilation', (compilation) => {
    compilation.plugin('html-webpack-plugin-before-html-processing', (htmlPluginData, callback) => {
      // 使用正则表达式替换所有包含 /static/file/ 的路径
      htmlPluginData.html = htmlPluginData.html.replace(/\/static\/file\//g, '/zhgdxmf/static/file/');
      callback(null, htmlPluginData);
    });

    compilation.plugin('optimize-assets', (assets, callback) => {
      // 遍历所有输出文件,替换其中的 /static/file/ 路径
      Object.keys(assets).forEach((assetName) => {
        if (assetName.endsWith('.js') || assetName.endsWith('.html')) {
          let content = assets[assetName].source();
          content = content.replace(/\/static\/file\//g, '/zhgdxmf/static/file/');
          assets[assetName] = {
            source: () => content,
            size: () => content.length
          };
        }
      });
      callback();
    });
  });
};

module.exports = AddPrefixPlugin;

使用


全程借助chatgpt完成,感慨能力之强大啊

相关推荐
Watermelo6177 分钟前
详解js柯里化原理及用法,探究柯里化在Redux Selector 的场景模拟、构建复杂的数据流管道、优化深度嵌套函数中的精妙应用
开发语言·前端·javascript·算法·数据挖掘·数据分析·ecmascript
m0_748248949 分钟前
HTML5系列(11)-- Web 无障碍开发指南
前端·html·html5
m0_7482356120 分钟前
从零开始学前端之HTML(三)
前端·html
一个处女座的程序猿O(∩_∩)O2 小时前
小型 Vue 项目,该不该用 Pinia 、Vuex呢?
前端·javascript·vue.js
hackeroink5 小时前
【2024版】最新推荐好用的XSS漏洞扫描利用工具_xss扫描工具
前端·xss
迷雾漫步者7 小时前
Flutter组件————FloatingActionButton
前端·flutter·dart
向前看-7 小时前
验证码机制
前端·后端
燃先生._.8 小时前
Day-03 Vue(生命周期、生命周期钩子八个函数、工程化开发和脚手架、组件化开发、根组件、局部注册和全局注册的步骤)
前端·javascript·vue.js
高山我梦口香糖9 小时前
[react]searchParams转普通对象
开发语言·前端·javascript