You may encounter the following error when using Bootstrap popper with Angular : Bootstrap Uncaught SyntaxError: Unexpected token export Solution The problem is due to the Javascript import. Most certainly your imports looks like
1 2 |
"node_modules/jquery/dist/jquery.min.js", "node_modules/popper.js/dist/popper.min.js", |
You...