> clearly stated in the docs exactly at the place you would be looking for: Where the API reference for the `scrollTo()` method is.
I implemented `scrollTo()` long time ago and was looking at `loo...
It is not so nice to say that I didnt make an effort. I searched through the docs, the issues and I created a reproduction repo. I am sorry that I didnt see this sentence that you underlined.
#109...
Thanks for the info! May you want to update the readme for everyone, as I suggested, to describe more of the flow with the ssr/browser detection/client actual viewport/cookie? Maybe also a flow cha...
If I see correctly the `scan` functionality is doing exactly what I requested. Maybe it should be activated by default for worker functions or at least be highlighted more in the docs?
I saw a fre...
> Hello, is there any way to use `UTable` and make the full row clickable (as `NuxtLink`) and with an hover effect?
Clickable table rows came up a lot of times already and I would also REALLY appr...
Probably ALL providers would need an info that they dont get auto detected when using Turborepo without explicitly allowing the variables or setting `--env-mode=loose`?
I opened an issue: https://...
### Verify canary release
- [x] I verified that the issue exists in the latest Turborepo canary release.
### Link to code that reproduces this issue
-
### Which canary version will you have in ...
You are right, works in a minimal reproduction repo that I created. I figured this is an issue of Turborepo that I am using:
Turborepo is actually removing all environment variables that are not o...
### Environment
Bun 1.2.1
Nitro v2 / v3
### Reproduction
https://github.com/MickL/nitro-minimal
### Describe the bug
$production is not working in environments like Cloudflare Pages because NO...
### Environment
- Bun 1.2.1
- Cloudflare Workers / Pages
- Nitro v2/v3
- Nuxt 2.x
### Reproduction
-
### Describe the bug
It seems like `$production` is not working in all environments because...
### Environment
bun 1.2.1
[email protected]
### Reproduction
-
### Describe the bug
When deploying to Cloudflare Pages, the preset 'node-server' is selected instead of...
nuxt-icon is amazing BUT it seems like icons are all-or-nothing. E.g. consider someone using only 2 icons from material-symbols. This will result in either bundling 884 Kb with the build or, especi...
<!-- Please provide all of the information requested below. We're a small team and without all of this information it's not possible for us to help and your bug report will be closed. -->
**What v...
Unfortunately I have the same issue:
main.css:
```css
@import "tailwindcss";
@theme {
--font-sans: 'Inter', sans-serif;
--font-serif: 'Merriweather', sans-serif;
}
```
Even tho I tried ...
If you want buttons to have cursor pointer, I recommend to do this the Tailwind way (not writing css as shown above):
main.css:
```
@layer base {
button,
[role="button"] {
@appl...
But this would rather be something Tailwind needs to fix because it affects all Vite projects which might be most of the projects that use Tailwind. I dont think it is something Nuxt should try to ...
Could you elaborate? I work with Tailwind 4 for some time now and it works like a charm, couldnt be more happy! No need to a Nuxt module from my side but maybe I am missing something?
Thank you SO much for the quick fix! When I initially discovered the bug I was thinking this cant be true because nuxt i18n is already in v9 and nuxt-seo in v2. I am happy I made the reproduction a...
Hello! Could you add a little explanation to the readme how this module works in particular?
- Initially the server needs to renders "something". It seems like nuxt-viewport is trying to find the ...
In Tailwind 3 and 4 there is no `xs` breakpoint with 320px width, rather everything below 640 is the considered to be the default. I therefor lowered `xs` width to 0. I was also considering to rena...