mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
18 lines
367 B
TypeScript
18 lines
367 B
TypeScript
/**
|
|
* Replace fontawesome symbols
|
|
*/
|
|
|
|
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
|
import { pattern, replacement } from '../../../src/common/build/fa';
|
|
|
|
export default () => ({
|
|
enforce: 'pre',
|
|
test: /\.(tag|js|ts)$/,
|
|
exclude: /node_modules/,
|
|
loader: StringReplacePlugin.replace({
|
|
replacements: [{
|
|
pattern, replacement
|
|
}]
|
|
})
|
|
});
|