Tutorial feedback and issues #1
Replies: 3 comments
-
cant install remix-image on remix 2.8.1 npm ERR! code ERESOLVE |
Beta Was this translation helpful? Give feedback.
-
On the step "Use component" in the tutorial there's a little problem. The code example is: import Image from "remix-image";
<Image
loaderUrl="/api/image"
src="..."
responsive={[
{
size: {
width: 100,
height: 100,
},
maxWidth: 200,
},
]}
dprVariants={[1, 3]}
/> The import should however be: import { Image } from "remix-image"; |
Beta Was this translation helpful? Give feedback.
-
I haven't been able to get this package to install on Node versions above 18. I just created a new remix project and it came out of the box with >=20, downgrading to 18 seemed to get it to work, but I got the following errors: npm install -S remix-image @next-boost/hybrid-disk-cache I got similar results with Node 22. |
Beta Was this translation helpful? Give feedback.
-
Docusaurus tutorial
The Docusaurus tutorial is very important: it is the very first thing a Docusaurus user sees (init template or CodeSandbox)
Please report here if anything does not work or is unclear.
Beta Was this translation helpful? Give feedback.
All reactions