gatsby image svg not found

后端 未结 4 1856
你的背包
你的背包 2021-02-14 07:16

When trying to load an SVG image this way:

export const query = graphql`
    query {
        fileName: file(relativePath: { eq: \"logo_large.svg\" }) {
                  


        
4条回答
  •  借酒劲吻你
    2021-02-14 07:47

    I know this is an old question with accepted answer but I thought I might add another solution for others' benefit. I found this solution at: https://github.com/gatsbyjs/gatsby/issues/10297

    import yourSVG from './logo_large.svg'
    
    const Home = () => <>
    

提交回复
热议问题