I connect jQuery as follows:

new webpack.ProvidePlugin({ '$': 'jquery', 'jQuery': 'jquery' }) 

And how in the same way through ProvidePlugin to connect jQuery Migrate. Well or not through ProvidePlugins . I just would not want to include this library through import in each file.

1 answer 1

jquery migrate connects in the same way as jquery

  new webpack.ProvidePlugin({ '$': 'jquery', 'jQuery': 'jquery', 'jquery-migrate': 'jquery-migrate' })