gatsby image svg not found

后端 未结 4 1508
面向向阳花
面向向阳花 2021-02-14 07:05

When trying to load an SVG image this way:

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


        
4条回答
  •  Happy的楠姐
    2021-02-14 07:40

    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 = () => <>
    

提交回复
热议问题