我有一个@svgr/webpack
安装了库的 Next.js 站点。我已配置next.config.js
为使用@svgr/webpack
,现在想要导入 svg 图像并将其与新next/image
组件一起使用。
这是我设置next.config.js
文件的方式:
module.exports = {
images: {
domains: ["images.vexels.com"],
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
return config;
},
};
这就是我想要做的:
import Image from 'next/image'
import Logo from '@/svg/logo.svg'
<Image src={Logo} width={174} height={84} />
但是,当我这样做时,我收到以下错误:
Unhandled Runtime Error
TypeError: src.startsWith is not a function
Source
client\image.tsx (278:13) @ Image
276 | let isLazy =
277 | !priority && (loading === 'lazy' || typeof loading === 'undefined')
> 278 | if (src && src.startsWith('data:')) {
| ^
279 | // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
280 | unoptimized = true
281 | isLazy = false
我认为也许我应该将 Logo 组件作为一个实际组件包含在内,如下所示:<Image src={<Logo />} width={174} height={84} />
然而,这也没有奏效。
知道出了什么问题以及如何解决吗?