Faisal Manzer
Faisal Manzer
Big Files are giving this error some times. Tried on Chrome, Safari Mac, Safari iOS. Chrome is warning but is playing, whereas Safari sometimes play or some times gives `onplayerror`.
After digging into code it seems to be thrown when it can't playtest audio. https://github.com/goldfire/howler.js/blob/master/src/howler.core.js#L408 ```js var testPlay = new Audio().play(); if (testPlay && typeof Promise !== 'undefined' && (testPlay...
One problem is that if there is no user activity and you try to play sound then also "Audio Pool Exhausted" will come as an error. Check for that too....
When I changed config.output.publicPath to https://example.com/ I don't get inlined critical CSS. ``` ➜ yarn build yarn run v1.21.1 $ preact build --verbose --inline-css --no-sw --preload --prerenderUrls prerender-urls.js PUBLIC_PATH is...
I can share `preact.config.js` as my repo is private.
https://gist.github.com/Faisal-Manzer/0ed735ad4a857a7b8dc60b5a84b1d0bd
Any workaround for this?
What is expected output and current output?
Can we have some more discussion on this?
I am using it with `preact-cli`. Also, I am using `node-sass`. ``` # postcss.config.js module.exports = { plugins: [ require('postcss-viewport-height-correction'), require('postcss-normalize')({ forceImport: 'normalize.css' }), require('autoprefixer'), require('postcss-combine-media-query'), require('postcss-dark-theme-class')({ darkClass: 'dt', lightClass:...