Doma

Results 127 comments of Doma

@VCodepp Nah actually there's still problem with Vue-APlayer. `hls.js` is not a solid dependency of Vue-APlayer. It's only required if you want to play HLS media. And if you don't,...

@VCodepp A quick fix to this is adding `hls.js` to `"externals"` in your webpack config, like ```js { externals: 'hls.js' } ```

@VCodepp If you're using `vue-cli`, the webpack config file is in `build/webpack.base.conf.js`. Add an `'external'` property to the exported object like: ```js module.exports = { entry: ..., output: ..., +...

> I have some issues with Aplayer and I create a post on Stackoverflow for it. > > Please help me. the link is [here](https://stackoverflow.com/questions/60816814/how-to-load-againreload-component-in-vuejs-or-destroy-it-and-load-again/60818700?noredirect=1#60818700) You can set a `key`...

@hjaiim It indicates that your browser doesn’t support the media file you use. You should probably use some other file formats.

@hjaiim 有可能是跨域或者服务器加了访问限制之类的,导致文件不能正常加载。浏览器没能把服务端的响应解析成支持的媒体文件就抛这个异常了。

@phiwut Did a dialog show up telling you rate limits was exceeded and you could provide an access token to get over it?

@indus Good advice. Yes this way user can see latest results. However, the user that requests this race feature #3 wants to see them "race each other", and I feel...

@indus I see. Disadvantage is that the repo is then getting too big. But I'll still consider it as an alternative.

Any update on this? Got positive on `findAllByRole` with `.toHaveLength(1)` when checking for "exactly one match".