An open API service indexing awesome lists of open source software.

https://github.com/lwd-technology/react-app-rewire-provide-plugin

Add webpack.ProvidePlugin to a react-app-rewired config.
https://github.com/lwd-technology/react-app-rewire-provide-plugin

react-app-rewired webpack

Last synced: about 2 months ago
JSON representation

Add webpack.ProvidePlugin to a react-app-rewired config.

Awesome Lists containing this project

README

        

# react-app-rewire-provide-plugin

Add `webpack.ProvidePlugin` to a [`react-app-rewired`](https://github.com/timarney/react-app-rewired) config.

```js
const rewireProvidePlugin = require('react-app-rewire-provide-plugin')

// Use `webpack.ProvidePlugin` to add jQuery globally
config = rewireProvidePlugin(config, env, {
'window.jQuery': 'jquery'
})
```