// next.config.jsmodule.exports = { webpack(config) { config.module.rules.push({ test: /.svg$/i, issuer: /.[jt]sx?$/, use: ['@svgr/webpack'], }) return config },}
import SvgComponent from '../../public/sandbox/makoto.svg'; ... <SvgComponent />