Hello! I tried to use the plugin for replacing $$TEST$$ string in the code. The plugin didn't change anything. Config example: ``` const ReplacePlugin = require('webpack-plugin-replace'); module.exports = { // ... plugins: [ new ReplacePlugin({ exclude: [ 'foo.js', /node_modules/, filepath => filepath.includes('ignore') ], values: { '$$TEST$$': 'FOO', } }) ] }; ```