Volker Rose

Results 32 comments of Volker Rose

Reading about a similar problem at https://github.com/nikku/karma-browserify/issues/23 there might be a bug on WebStorms side: https://youtrack.jetbrains.com/issue/WEB-12496.

I'm also stuck here, because I'm on a Mac with Node installed via https://github.com/creationix/nvm and no sudo/administrative right. Could you add a UI to manually add the path to the...

This fix works for me on iOS 👍

@jschroeter, we are using the logger provided by `@nuxt/kit` within our Nuxt modules. See https://nuxt.com/docs/api/kit/logging for details.

We are also facing this error. As @rankjie supposed, we also did not change the Nuxt version, but updated `@nuxtjs/i18n` from version `8.2.0` to `8.3.0`.

There is some documentation over at https://github.com/unjs/c12#environment-specific-configuration. At least I think that this is the underlying feature used in the `nuxt.config`.

We are using yarn v1 and falling back to `[email protected]` works as a temporary fix in our projects: ```json "resolutions": { "sharp": "0.32.6" } ``` [This mechanism also exists for...

I followed [@timbenniks great example](https://github.com/nuxt/image/issues/309#issuecomment-853105357) over at https://codesandbox.io/s/intelligent-water-nbikw?file=/pages/index.vue without problems. ```javascript export default { props: { src: { type: String }, media: { type: String }, sizes: { type: String...

@bradlis7, I cloned your reproduction locally and made the plugin work. I don't know what exactly did it, but I used `npx nuxi upgrade` and switched to `yarn` ...

You are probably on localhost respectively on your dev environment via `npm run dev`? This module does not track in dev mode by default. You need to explicitly set the...