Larry Williamson

Results 32 comments of Larry Williamson

I am using a single layout (`default`) It seems like in some cases an error in the application will prevent `_isNuxtLayoutUsed` from being set at all Not sure if this...

I have been getting this for a while now and only just figured out it was the multiple args... any interpreter, with a string or string array, more than one...

If you're reading this and need modifications in the PR, you can use @JFGHT's version in your `package.json`: "@nuxt3/apollo-module": "https://github.com/JFGHT/nuxt3-apollo-module" Not sure if the original author (@newbeea) is currently active,...

That was for anyone else ;)

Two instances of this in the Nuxt discord today, "Disable cache" in browser devtools network panel helps for now.

Occurring for me when running `bun run build` and pre-rendering anything using any of the methods, i.e. an array of routes in `nitro.prerender.routes` or using just `nitro.static: true` ... `bun...

Using `ps-tree` thinking maybe I've a rogue child process, I'm seeing two `esbuild` child processes (and the `ps` command from `ps-tree`): ``` ✔ You can preview this build using npx...

This seems like it might possibly be relevant: https://github.com/evanw/esbuild/issues/985#issuecomment-1718768339 This is almost certainly because of this: https://github.com/evanw/esbuild/issues/2727#issuecomment-1343153719 As, with the `pstree` command (`brew install pstree`) we see the `--ping` argument:...

check if any module or plugin you're using has a `setTimeout` in it, i had one that was, i was able to remove it from the library and it didn't...

I feel like it might be useful to have some sort of "registry" of promises or long running timers so we could alert the user and even cleanly close them/time...