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