2017-12-07 11:44:50 -06:00
|
|
|
/**
|
|
|
|
* Replace fontawesome symbols
|
|
|
|
*/
|
|
|
|
|
2017-12-16 23:35:30 -06:00
|
|
|
import { pattern, replacement } from '../../../src/common/build/fa';
|
2017-12-07 11:44:50 -06:00
|
|
|
|
|
|
|
export default () => ({
|
|
|
|
enforce: 'pre',
|
2018-02-10 02:01:32 -06:00
|
|
|
test: /\.(vue|js|ts)$/,
|
2017-12-07 11:44:50 -06:00
|
|
|
exclude: /node_modules/,
|
2018-02-15 04:59:07 -06:00
|
|
|
use: [{
|
|
|
|
loader: 'replace-string-loader',
|
|
|
|
options: {
|
|
|
|
search: pattern,
|
|
|
|
replace: replacement
|
|
|
|
}
|
|
|
|
}]
|
2017-12-07 11:44:50 -06:00
|
|
|
});
|