craftpip/angular-confirm

angular-confirm requires jQuery

Talhah opened this issue · 1 comments

I am using Webpack with bootstrap 4 which is working fine. After I installed angular-confirm I am only receiving this message 'angular-confirm requires jQuery'.

Ok I had to adjust my Webpack config to include jQuery globally.

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