I have a project that uses webpack and react. I use the file-loader / url-loader to use images with the webpack/react setup. In my react project I do import Img from '/image/source/image.jpg'
but if then try <img src={Img}>
the src is a base64 code that is saying module.exports = __webpack_public_path__ + "images/code.61e3a3939c2f93f30ac21419625c9a4f.jpg";
and no image is showing. How can I fix this?
webpack.config.js
var webpack = require( 'webpack' )
var path = require( 'path' )
var BUILD_DIR = path.resolve( __dirname, 'src/client/public' );
var APP_DIR = path.resolve( __dirname, 'src/client/App' );
var config = {
mode : 'development',
entry : APP_DIR + '/index.jsx',
output : {
path : BUILD_DIR,
filename : 'bundle.js'
},
devServer : {
publicPath : '/',
contentBase : './src/client'
},
module : {
rules : [
{
test : /\.jsx|js?/,
include : APP_DIR,
exclude : /(node_modules)/,
loader : 'babel-loader',
query : {
presets : [ 'env', 'react' ]
}
},
{
test : /\.scss|.css$/,
loaders : [ 'style-loader', 'css-loader', 'sass-loader' ]
},
{
test : /\.(png|jp(e*)g|svg)$/,
use : [{
loader : 'url-loader',
options : {
limit : 8000,
name : 'images/[hash]-[name].[ext]'
}
}]
},
{
test : /\.(png|jp(e*)g|svg)$/,
use : {
loader: "file-loader",
options: {
name: "images/[name].[hash].[ext]"
}
}
}
]
}
};
module.exports = config;
I have a project that uses webpack and react. I use the file-loader / url-loader to use images with the webpack/react setup. In my react project I do import Img from '/image/source/image.jpg'
but if then try <img src={Img}>
the src is a base64 code that is saying module.exports = __webpack_public_path__ + "images/code.61e3a3939c2f93f30ac21419625c9a4f.jpg";
and no image is showing. How can I fix this?
webpack.config.js
var webpack = require( 'webpack' )
var path = require( 'path' )
var BUILD_DIR = path.resolve( __dirname, 'src/client/public' );
var APP_DIR = path.resolve( __dirname, 'src/client/App' );
var config = {
mode : 'development',
entry : APP_DIR + '/index.jsx',
output : {
path : BUILD_DIR,
filename : 'bundle.js'
},
devServer : {
publicPath : '/',
contentBase : './src/client'
},
module : {
rules : [
{
test : /\.jsx|js?/,
include : APP_DIR,
exclude : /(node_modules)/,
loader : 'babel-loader',
query : {
presets : [ 'env', 'react' ]
}
},
{
test : /\.scss|.css$/,
loaders : [ 'style-loader', 'css-loader', 'sass-loader' ]
},
{
test : /\.(png|jp(e*)g|svg)$/,
use : [{
loader : 'url-loader',
options : {
limit : 8000,
name : 'images/[hash]-[name].[ext]'
}
}]
},
{
test : /\.(png|jp(e*)g|svg)$/,
use : {
loader: "file-loader",
options: {
name: "images/[name].[hash].[ext]"
}
}
}
]
}
};
module.exports = config;
Share
Improve this question
edited May 7, 2018 at 15:12
Rick Grendel
asked May 6, 2018 at 23:03
Rick GrendelRick Grendel
3021 gold badge4 silver badges14 bronze badges
9
- can you show your code? – lomse Commented May 6, 2018 at 23:53
- Could you mind show us more detail code? – Stephen Kingsley Commented May 7, 2018 at 3:07
-
It is something you need to work out with your
public-path
andfile-loader
exportname
in Webpack config. You should show us the Webpack configuration you are using now. – Up209d Commented May 7, 2018 at 7:09 - @Up209d I added the config – Rick Grendel Commented May 7, 2018 at 15:14
-
@RickGrendel Hey bro, why your
dev-server
havecontentBase
ofsrc/client
, it is supposed to serve assets from yourBUILD_DIR
since all of your assets processed by Webpackfile loaders
will be delivered there. – Up209d Commented May 8, 2018 at 0:39
2 Answers
Reset to default 6I suggest removing the file-loader in your webpack.config.js and only use the url-loader as both plugins work similarly. To my understanding, Webpack processes your images files now using both loaders as you specify for both loaders to be triggered by the following.
test : /\.(png|jp(e*)g|svg)$/,
As images run through both loaders, this is likely why you see module.exports = __webpack_public_path__ + "images/code.61e3a3939c2f93f30ac21419625c9a4f.jpg";
for your image source.
Here's what the webpack docs say about the url-loader.
url-loader works like file-loader, but can return a DataURL if the file is smaller than a byte limit.
Besides that you instruct webpack to use a different file names for the same file extensions which might also create an issue.
url-loader > name : 'images/[hash]-[name].[ext]'
file-loader > name: "images/[name].[hash].[ext]"
I've uploaded this GitHub repo that you can check out. It loads images as you suggest. Adjust the limit
setting of the url-loader and check the source to see the url change from a base64 encoded image to an URL.
For Webpack 5 use type: 'asset/resource'
webpack.config.js
{
test: /\.(png|jpe?g|gif|eot|woff2|woff|ttf|svg)$/i,
type: 'asset/resource'
}