Some Cordova plugins like the cordova media plugin include files like www/browser/Media.js that implement the same api that the plugin provides for use in browsers outside of Cordova (The plugin works also outside of Cordova, in regular browser apps).
If you do the following, for example, a zip file that contains the app is created and the mentioned Media.js file is correctly included in it:
ionic platform add browser
cordova plugin add https://github.com/apache/cordova-plugin-media
ionic build browser
However, if you want to use said file while running ionic serve
, you’d have to copy it to www and include it in your index.html manually.
Is there a way to tell ionic serve about these files so they are included automatically?
If not, can someone provide suggestions on how to implement this the ionic way? I’m about to start writing a cordova plugin that needs a browser js file and i’d like to include it nicely in my ionic project.