I am currently utilizing the angular-cli .net core starter. As I attempt to incorporate my own CSS and JavaScript files, I encounter the following error:
An unhandled exception occurred while processing the request. Exception: Call to Node module failed with error: Prerendering failed because of error: Error: Bootstrap's JavaScript requires jQuery.
I have already attempted the following solutions:
npm install jquery
+
import $ from 'jquery'; => in app component
Could you provide guidance on how to properly configure jQuery with webpack / Angular2?
Your assistance is greatly appreciated!