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