I have used webpack for my project.After compiling webpack background images stored in dist/img folder but in css file it is showing dist/img/filename..so image loading not properly...if image path ../img/file it will works..how i can do this..
this is my webpack.config.js file
module.exports = (env = {}) => {
return {
entry: ['./src/js/app.js', './src/scss/main.scss'],
output: {
filename: 'dist/js/app.js',
},
module: {
rules: [
{
test: /\.scss$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].css',
outputPath: 'dist/css/'
}
},
{
loader: 'extract-loader'
},
{
loader: 'css-loader'
},
{
loader: 'postcss-loader'
},
{
loader: 'sass-loader'
}
]
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
use: [
{
loader: "file-loader?name=[name].[ext]&outputPath=dist/img/"
}
]
}
]
}
}
};
You have made a mistake in your output and loader config, do it like this:
var path = require('path');
anyways you can also use
CopyWebpackPlugin
to copy your assets indist
. I hope this would be helpful