Laurynas

Results 11 comments of Laurynas

This is quite an old issue, but I had encountered it today while migrating a small app to Tailwind. For me the simplest (and most intuitive) solution was to add...

Necromancy! Since nobody is working on this issue I decided to quickly create a solution using transforms in config. Here is my solution, in case somebody else needs to support...

@manniL thank you for your response. As I wrote above, I know about this solution, but it has a big drawback of affecting all auto-imports. E.g. I still want to...

True, my current solution has this line in the `ignore` array: `'pages/**/*.ts'` Right now I don't have another use case for my proposal. But I still think the configuration would...

I personally solved this by using `router.options.ts` where I import all page routes manually ([docs](https://nuxt.com/docs/guide/going-further/custom-routing)). This works quite well in my app since each page can have multiple patterns. This...

The main contributor of `nuxt-property-decorator` has written that he does not plan to upgrade the lib for Nuxt 3 support. Apparently, he switched multiple projects to Nuxt 3 by migrating...

Not sure if my issue is related, but I get the same error if I use my `PageMeta` component with an empty template tag: ``` useHead({ ... }) ``` Solved...

I would really like to see `ignorePatterns` config option. When CLI, editor and pre-commit hook runs Prettier, it requires a lot of configuration set `ignore-path` CLI option for all of...

This is enabled by default on Android. Would be nice to bring the platforms closer together 🙏

I also have the same need. As a workaround, I found that you can load postcss plugins in the addon configuration using `postcssOptions`: ``` addons: [ { name: '@storybook/addon-postcss', options:...