Skip to content

Instantly share code, notes, and snippets.

@rlax
Created November 23, 2017 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlax/013274d14c3f8ee0382eecae3c69d89c to your computer and use it in GitHub Desktop.
Save rlax/013274d14c3f8ee0382eecae3c69d89c to your computer and use it in GitHub Desktop.
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
}),
в вебпак конфиге
"jquery": "3.2.1",
в package.json, потом npm install
в любом модуле
...
componentDidMount() { $('.jq').addClass('worked'); }
...
render() { return (<div className="jq" />) }
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment