0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【webpackでの失敗備忘録1】ビルドしたhtmlでimgのパスが変わらない【url-loader】

Posted at

問題

ビルド前のhtmlに記述した<img src="">のパスがビルド後も変わらなかったこと。

ディレクトリ構成

/
└index.html
└img/
  └hoge.jpg

設定ファイル

▼webpack.config.js

{
  test: /\.(jpe?g|png|gif|svg|ico)$/,
  loader: 'url-loader',
  options: {
    limit: 2048,
    name: '[name].[ext]',
    esModule: false,
    outputPath: 'images/',
    publicPath: function (path) {
      return {buildPath} + path;
    },
  }
},

{buildPath}はここには書けないので割愛。

▼html
<img src="/img/hoge.jpg" alt="hoge">

コンパイル後のhtml

<img src="/img/hoge.jpg" alt="hoge">

変わらねえ〜〜〜〜

原因

指定したパスにimgディレクトリが無かったため。
指定した場所に画像が無ければローダーは読み込めないよ!!
下記のようにディレクトリ構造に合わせてパスを指定すると、問題なくwebpack.config.jsの設定通りにパスが書きかわりました。

▼html
<img src="./img/hoge.jpg" alt="hoge">

コンパイル後のhtml

<img src="{buildPath}/hoge.jpg" alt="hoge">

解決

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?