Jürg Hunziker

Results 26 comments of Jürg Hunziker

Hi @gitspacefan, nice to hear that you like the plugin. Sorry that I wasn't able to check the compatibility for the last few WordPress versions. The main reason (and I...

I'm currently getting the same error when I try to use a custom plugin. Strangely the issue only appears when the npm dependencies are installed in the plugin (`node_modules` folder...

I have the following dependencies (used https://github.com/vendure-ecommerce/plugin-template as a starting point) ``` "devDependencies": { "@types/jest": "^29.5.2", "@vendure/admin-ui-plugin": "^2.0.2", "@vendure/asset-server-plugin": "^2.0.2", "@vendure/core": "^2.0.2", "@vendure/testing": "^2.0.2", "@vendure/ui-devkit": "^2.0.2", "dotenv": "^16.3.1", "jest": "^29.5.0",...

Yeah that makes sense. I'm trying to develop an isolated plugin but I placed it directly in my vendure/src/plugins/my-plugin folder to make the development easier. The strange thing is the...

So as soon as there is a `node_modules/@vendure` folder inside `src` or `src/plugins` or deeper the startup of my vendure instance fails 🤔 even if I'm not importing my plugin...

thanks @thefalked for this solution! If you're also having components using the `cn()`-utility you need to define the same config there: ```typescript import { clsx, type ClassValue } from 'clsx';...