Help configuring a polyfill?
-
I’m trying to install an audio record polyfill:
https://github.com/ai/audio-recorder-polyfillit requires adding an entry to the webpack config:
entry: { app: './src/app.js', + polyfill: './src/polyfill.js' }
and loading in the app via:
window.MediaRecorder = require('audio-recorder-polyfill')
I’ve scanned the quasar documentation and forums, but can’t figure out where these two need to be inserted in the configurations or template. Any clue appreciated!
Thanks