Adrian Wix
Adrian Wix
You should not write `export default pdf`. Just vue-pdf-shims.d.ts ```ts declare module 'vue-pdf' ```
Something like this make jest complains. ```js describe('/iam/users (GET)', () => { test('Return 403 if the user is not authenticated', async () => { expect.assertions(1) const response = await request(server)...
Maybe related to this topic but is there a way to access $matomo through the composition API? When using `Vue.use(VueMatomo)` it is not possible to access $matomo inside the composition...
I get `index.es.js?ad3d:295 Could not find one or more icon(s) {prefix: "fas", iconName: "user"} {}` although the icon is show...
@ezeikel Hi, can you post how you solved this? Where did you copy this in _document.js?
Hi, thanks for answering. So I literally added styled-components to fix this bug which seemed a bit overkill. I had already @zeit/next-css so instead, I imported the styles directly in...
Shouldn't we update this module to actually do what is expected? "ignoreEnvVars" should ignore the environment variables and add "validateEnvVars" to do what the current "ignoreEnvVars" do. This would be...
The same problem happens when I want to send an object as JSON to the backend. Without the SDK I would just `formData.append('files'. JSON.stringify(data))`. I don't see the point of...
`new Blob()` makes "multerjs" fails also. Because it thinks the the json is a file and I didn't specified the field with the json to be a file inside the...