Guest User

Untitled

a guest
Apr 26th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. module.exports = (env) => {
  2. ...
  3. const sharedConfig = {
  4. plugins: [
  5. new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' }), // Maps these identifiers to the jQuery package (because Bootstrap expects it to be a global variable)
  6. new CheckerPlugin()
  7. ]
  8. };
  9. ...
  10. };
Add Comment
Please, Sign In to add comment