We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b77bd43 commit 163413fCopy full SHA for 163413f
README.md
@@ -59,6 +59,29 @@ module.exports = {
59
}
60
```
61
62
+### Array replacement:
63
+
64
+In your `webpack.config.js`:
65
66
+```javascript
67
+module.exports = {
68
+ // ...
69
+ module: {
70
+ loaders: [
71
+ {
72
+ test: /fileInWhichJQueryIsUndefined\.js$/,
73
+ loader: 'string-replace',
74
+ query: {
75
+ replace: [
76
+ {search: 'AAAAA', replace: 'BBBBB'},
77
+ ]
78
+ }
79
80
81
82
+}
83
+```
84
85
## Contributing:
86
87
Feel free to open issues to propose stuff and participate. Pull requests are also welcome.
0 commit comments