I have installed a widget using npm
. It is installed under node_modules
folder. I need to include the widget's javascript and CSS files in my View
but since they are not in Web
folder I can't include them, using the following method :
<link href="{{ asset('assets/someFolder/.css') }}" rel="stylesheet" type="text/css" />
How can I achieve the above?