Skip to content

undefined image src if image used twice in html #84

Open
LeadingReach/extract-loader
#1
@mbibko

Description

@mbibko

webpack.config.js

  mode: 'development',
  module: {
    rules: [
      {
        test: /\.html$/i,
        use: ['file-loader?name=[name].[ext]', 'extract-loader', 'html-loader'],
      },
      {
        test: /\.jpg$/,
        use: ['file-loader?name=[name].[ext]'],
      }
    ],
  },
};

src/index.js
import './index.html'

src/index.html

<img src="img.jpg">
<img src="img.jpg">

src/img.jpg
simple image

When I run webpack, it generates index.html file with this html:

<img src="img.jpg">
<img src="undefined">

The first img tag has correct src, but the second src is undefined.

I think problem with extract-loader. Thanks for help.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions