Merott Movahedi
Merott Movahedi
As a workaround, I'm registering all components as global Vue components in my jest setup file: ```js [ 'app/components/MyComponentA.vue', 'app/components/MyComponentB.vue', 'ui-kit/components/ComponentA.vue', 'ui-kit/components/ComponentB.vue', 'ui-kit/components/ComponentC.vue', ].forEach((path) => { const name = path.match(/(\w*)\.vue$/)[1];...
@harrytran998 are you running into a particular issue? I don't have anything special for auto-scanning components in my jest config file: ```js // jest.config.js const path = require('path'); module.exports =...
Ran into this today. Has someone got a workaround? :)
I'm surprised this hasn't been addressed sooner. An image without a `src` attribute not only isn't valid HTML, but also causes the image's alt text and broken image icon to...
While this is unlikely to be a problem in production because of browser's caching behaviour, it still should be fixed.
This issue is nearly 5 years old, but still relevant, and it's actually a bug… Let me know if I should open a separate issue. Parentheses around nullish coalescing operators...
Any reason this couldn't be merged? (Sorry for resurrecting such an old PR! 😅)
I've made a PR to support a `preferNPM` option, which ignores any bower components that are also found to be installed as node modules. See #78.
What layout system are you using? Could you share your template please? Also, is this for iOS or Android, or both?
Perhaps it would also be possible on iOS, as suggested in [this SO answer](https://stackoverflow.com/a/37474812/635069), with the caveat being that only the first request would have the headers. That shouldn't normally...