Nathan Rowe

Results 16 comments of Nathan Rowe

> On `@nuxt/image` 1.11.0, I got this when upgrading `rolldown-vite` from 7.1.0 to 7.1.1+. I don't use `useImage` anywhere in my code, I just use the `NuxtImg` component. > >...

The issue is related to auto imports. It seems it's auto importing the server utils. Adding the following to the nuxt config: ```js nitro: { imports: { autoImport: false }...

> Resolves the build issue, but breaks running the server (for me at least) Settled on excluding the NuxtImg component for nitro auto imports. ```js nitro: { imports: { exclude:...

This is because of an upstream issue in `css-tree`. I was able to workaround the issue by overriding the css-tree version in my project so that it's the same. I...

The error i get is: `[500] [IPX_ERROR] Cannot find module '../data/patch.json'\nRequire stack:\n- /.output/server/node_modules/.nitro/[email protected]/lib/data-patch.js` This is happening with a built nuxt project using pnpm `10.21.0` It's because of this specific line...

> I get a different error: > > ``` > { > "error": { > "message": "[500] [IPX_ERROR] Cannot find module '../data/patch.json'\nRequire stack:\n- /root/XXX/apps/XXX/.output/server/node_modules/.nitro/[email protected]/lib/data-patch.js" > } > } > ```...