I am trying to import an svg within a NextJS project, everytime I get this error
JavaScript
x
6
1
./assets/aboutimg.svg 1:0
2
Module parse failed: Unexpected token (1:0)
3
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
4
> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="578" height="1028" viewBox="0 0 578 1028">
5
| <image id="_64538565_2370063099695596_8091233071539421184_n" data-name="64538565_2370063099695596_8091233071539421184_n" width="578" height="1028" xlink:href="
6
I have tried using next-images and also svgr. I will paste my About.js code below, it would be excellent if someone could let me know what I have been doing wrong.
JavaScript
1
24
24
1
import LayoutNoLogo from '../comps/LayoutNoLogo'
2
import AboutImg from '../assets/aboutimg.svg'
3
4
const About = () => {
5
return (
6
<LayoutNoLogo>
7
<div className="row">
8
<div className="column-1">
9
<img src={AboutImg} />
10
</div>
11
<div className="column-2">
12
<h1>About</h1>
13
</div>
14
</div>
15
<style jsx>{`
16
17
`}</style>
18
19
</LayoutNoLogo>
20
)
21
}
22
23
export default About;
24
Advertisement
Answer
Using next-images and adding the correct module exports allowed me to use images of all file types.