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