angular-confirm requires jQuery
Talhah opened this issue · 1 comments
Talhah commented
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'.
Talhah commented
Ok I had to adjust my Webpack config to include jQuery globally.
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
}),