0
4

2 回答 2

0

似乎将其添加a href到插件支持的属性列表中就足够了html-loader。所以在 webpack 配置中:

{
  test: /\.html$/,
  loader: 'html-loader',
  options: {
    attributes: {
      // ...
      {
        tag: 'a',
        attribute: 'href',
        type: 'src'
      }
    }
  }
}
于 2020-05-14T16:16:48.490 回答
0

对于 webpack 5,在选项中添加链接标签的源代码,如下所示

列表 arr 中的 ps '...' 是扩展默认支持的标签和属性所必需的

{
  test: /\.html$/i,
  include: path.join(__dirname, 'src/views'),
  use: {
    loader: 'html-loader',
    options: {
      esModule: false,
      sources: {
        list: [
          '...',
          {
            tag: 'a',
            attribute: 'href',
            type: 'src'
          }
        ]
      }
    }
  }
}
于 2021-07-11T11:44:46.193 回答