13 lines
302 B
JavaScript
13 lines
302 B
JavaScript
|
const { env, publicPath } = require('../configuration.js')
|
||
|
|
||
|
module.exports = {
|
||
|
test: /\.(jpg|jpeg|png|gif|svg|eot|ttf|woff|woff2)$/i,
|
||
|
use: [{
|
||
|
loader: 'file-loader',
|
||
|
options: {
|
||
|
publicPath,
|
||
|
name: env.NODE_ENV === 'production' ? '[name]-[hash].[ext]' : '[name].[ext]'
|
||
|
}
|
||
|
}]
|
||
|
}
|