This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-05-20 17:31:47 +02:00
|
|
|
const { env, publicPath } = require('../configuration.js');
|
2017-05-03 02:04:16 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
test: /\.(jpg|jpeg|png|gif|svg|eot|ttf|woff|woff2)$/i,
|
|
|
|
use: [{
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
publicPath,
|
2017-05-20 17:31:47 +02:00
|
|
|
name: env.NODE_ENV === 'production' ? '[name]-[hash].[ext]' : '[name].[ext]',
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
};
|