Created
March 29, 2020 20:22
-
-
Save majirosstefan/0fdea1a384ffe01be4b81bdf1d8418c6 to your computer and use it in GitHub Desktop.
in Storybook for React (web version)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// handle svg support | |
const fileLoaderRule = config.module.rules.find(rule => | |
rule.test.test('.svg'), | |
); | |
fileLoaderRule.exclude = /\.svg$/; | |
config.module.rules.push({ | |
test: /\.svg$/, | |
loader: 'svg-react-loader', | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment