admin管理员组文章数量:1346328
(problem solved!)
I am trying to use html-loader
and file-loader
to pack my image source which is mentioned in index.html
img
tag src
attribute.
But it's not working because the img
tag src
is not refering to the correct path.
Just want to know is there anything wrong within my config?
my webpack
config:
const { resolve } = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
entry: {
main: ['./src/index.js', './src/scss/main.scss'],
},
output: {
filename: '[name].js',
chunkFilename: '[name].min.js',
path: resolve(__dirname, 'build'),
},
mode: 'development',
module: {
rules: [
{
test: /\.html$/,
use: [
{
loader: 'html-loader',
}
],
},
{
test: /\.scss$/,
use: [
'style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.(jpg|png|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: '/img/',
pubicPath: '/img/'
}
}
],
}
]
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: './index.html'
})
]
}
(problem solved!)
I am trying to use html-loader
and file-loader
to pack my image source which is mentioned in index.html
img
tag src
attribute.
But it's not working because the img
tag src
is not refering to the correct path.
Just want to know is there anything wrong within my config?
my webpack
config:
const { resolve } = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
entry: {
main: ['./src/index.js', './src/scss/main.scss'],
},
output: {
filename: '[name].js',
chunkFilename: '[name].min.js',
path: resolve(__dirname, 'build'),
},
mode: 'development',
module: {
rules: [
{
test: /\.html$/,
use: [
{
loader: 'html-loader',
}
],
},
{
test: /\.scss$/,
use: [
'style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.(jpg|png|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: '/img/',
pubicPath: '/img/'
}
}
],
}
]
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: './index.html'
})
]
}
./build folder after run webpack
my index.html
(I also tried to change the img src attribute to "./img/women.jpg" or "/img/women.jpg" or "img/women.jpg", but nothing work but just make webpack piling error..)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<img src="./src/img/women.jpg" alt="">
</body>
</html>
built index.html
in ./build
folder
(so what is this 620b11833eb3b1be1f33.jpg
?)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script defer src="main.js"></script></head>
<body>
<img src="620b11833eb3b1be1f33.jpg" alt="">
</body>
</html>
Share
Improve this question
edited Jan 19, 2022 at 8:23
Mizok.H
asked Apr 25, 2021 at 7:26
Mizok.HMizok.H
4637 silver badges17 bronze badges
6
- 1 I think you encountered same problem as I did, here is my SO question. – David Malášek Commented Apr 25, 2021 at 7:54
- @Daweed I tried your solution. and it did work on my img src, but it failed when piling scss background-image url.. – Mizok.H Commented Apr 25, 2021 at 8:21
- 1 @Daweed But I guess you are right, It seems there is some config setting that I have to add for background-image url piling. – Mizok.H Commented Apr 25, 2021 at 8:22
- Yes for sure, I wasn't using scss in my case. – David Malášek Commented Apr 25, 2021 at 8:24
- @Daweed I tried to follow guide in here: webpack.js/guides/asset-modules and everything works like charm :DD. Thank you very much ! – Mizok.H Commented Apr 25, 2021 at 8:42
3 Answers
Reset to default 10Finally I found the solution.
I guess the error is caused by the problem which is mentioned by @Daweed in the top ment.
I am using webpack 5 but didn't notice that file-loader/url-loader/raw-loader is deprecated now.
The solution is to uninstall file-loader/url-loader/raw-loader from dev-dependency(and remember also remove all related config setting.),and follow the guides here.
my config setting now(which solved all problems) is below:
const { resolve } = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = {
entry: {
main: ['./src/index.js', './src/scss/main.scss'],
},
output: {
filename: '[name].js',
chunkFilename: '[name].min.js',
path: resolve(__dirname, 'build'),
},
mode: 'development',
module: {
rules: [
{
test: /\.html$/,
use: [
{
loader: 'html-loader',
}
],
},
{
test: /\.scss$/,
use: [
'style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.(jpe?g|png|gif)$/,
type: 'asset/resource',
generator: {
filename: 'img/[hash][ext]'
}
}
]
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: './index.html'
})
]
}
Looks there is a conflict between file-loader
and html-loader
plugins, thus it's generating corrupted assets.
However, html-loader
will take care of loading all the images (supported sources), we don't need additional plugin file-loader
to have that support.
So you can try just by removing file-loader
configuration
{
test: /\.(jpg|png|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: '/img/',
pubicPath: '/img/'
}
}
],
}
Can you try to create a public
folder in the root project folder and place your images there in the img
folder (for example). I think that should work out of the box without any configuration. Then refer to image as img/women.jpg
本文标签: javascripthtmlloader is not getting correct img src pathStack Overflow
版权声明:本文标题:javascript - html-loader is not getting correct img src path - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743830935a2546501.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论