next.js 프로젝트에서는 custom.d.ts에 추가하는 방식으로 되지 않습니다. (next.js를 사용하지 않을 경우)
npm install --save-dev @svgr/webpack
module.exports = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"]
});
return config;
}
};
import Github from '../github.svg';
const Contact: React.FC = () => {
return (
<div>
<div className='card-title'>CONTACT</div>
<Github />
<div>https://github.com/devstefancho</div>
</div>
);
};
export default Contact;