如何从 next.js 中提取 next/image
How to abstract next/image from next.js
我只使用 Next.js 中的 next/image。有没有办法只安装 next/image 模块而不是整个 Next.js 模块。我尝试执行以下操作 -
"next/image": "^10.0.5",
"next/link": "^10.0.5",
但是在执行 npm install 后,我收到以下错误 -
$ npm install
npm ERR! code EINVALIDPACKAGENAME
npm ERR! Invalid package name "next/image": name can only contain URL-friendly characters
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\sugamxp\AppData\Roaming\npm-cache\_logs21-02-17T06_08_55_518Z-debug.log
没有这样的包next/image
,它只是next
包中的一个文件夹,所以不,你不能单独安装它。
另外,没有NextJs你不能单独使用它,因为它依赖NextJs服务器来按需优化图像。我想,如果你想优化图像,你需要找到另一个解决方案。
我只使用 Next.js 中的 next/image。有没有办法只安装 next/image 模块而不是整个 Next.js 模块。我尝试执行以下操作 -
"next/image": "^10.0.5",
"next/link": "^10.0.5",
但是在执行 npm install 后,我收到以下错误 -
$ npm install
npm ERR! code EINVALIDPACKAGENAME
npm ERR! Invalid package name "next/image": name can only contain URL-friendly characters
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\sugamxp\AppData\Roaming\npm-cache\_logs21-02-17T06_08_55_518Z-debug.log
没有这样的包next/image
,它只是next
包中的一个文件夹,所以不,你不能单独安装它。
另外,没有NextJs你不能单独使用它,因为它依赖NextJs服务器来按需优化图像。我想,如果你想优化图像,你需要找到另一个解决方案。