-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(#1007): implement backing component #1010
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -19,6 +19,11 @@ const config = { | |||
poll: 1000, | |||
aggregateTimeout: 300 | |||
}; | |||
config.module.rules.push({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leverage SVGR (to transform svgs into react components)
https://react-svgr.com/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whats the motivation for SVGR? Can't we just load them as SVG?
Hi 👋 We couldn't create a preview environment for this pull-request 😥 You can see your environment build logs here. Please double-check your If you need help, email us at [email protected] or join Discord. Click here to disable Ergomake. |
package.json
Outdated
{ | ||
"devDependencies": { | ||
"@svgr/webpack": "^8.0.1" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you accidentally placed this and the lock file in the root of the repo
Resolves #1007