I'm trying to output all image files through webpack file loader, webpack is ignoring images with PNG extensions however. Configuration works correctly on JPG files.
My webpack config:
const path = require('path');
const PATHS = {
src: path.join(__dirname, 'src'),
img: path.join(__dirname, 'src/img'),
styles: path.join(__dirname, 'src/styles'),
build: path.join(__dirname, 'build')
}
module.exports = {
context: PATHS.src,
entry: {
script: ['./scripts/main.js', './styles/main.scss'],
index: './index.html'
},
output: {
path: PATHS.build,
filename: '[name].js'
},
module: {
loaders: [{
test: /\.scss$/,
loaders: ["style", "css", "sass"],
include: PATHS.styles
}, {
test: /\.(png|jpg)$/i,
loader: 'file?name=[path][name].[ext]',
include: PATHS.img
}, {
test: /\.(html)$/,
loader: 'file?name=[path][name].[ext]'
}]
}
};