2017-12-07 17:44:50 +00:00
|
|
|
/**
|
|
|
|
* Replace fontawesome symbols
|
|
|
|
*/
|
|
|
|
|
2017-12-17 05:35:30 +00:00
|
|
|
import { pattern, replacement } from '../../../src/common/build/fa';
|
2017-12-07 17:44:50 +00:00
|
|
|
|
|
|
|
export default () => ({
|
2018-02-15 17:53:54 +00:00
|
|
|
//enforce: 'pre',
|
2018-02-10 08:01:32 +00:00
|
|
|
test: /\.(vue|js|ts)$/,
|
2017-12-07 17:44:50 +00:00
|
|
|
exclude: /node_modules/,
|
2018-02-15 17:53:54 +00:00
|
|
|
loader: 'replace',
|
2018-02-15 14:07:19 +00:00
|
|
|
query: {
|
2018-02-15 17:53:54 +00:00
|
|
|
search: pattern.toString(),
|
2018-02-15 14:07:19 +00:00
|
|
|
replace: replacement
|
|
|
|
}
|
2017-12-07 17:44:50 +00:00
|
|
|
});
|