Skip to content

Instantly share code, notes, and snippets.

@majirosstefan
Created March 29, 2020 20:22
Show Gist options
  • Save majirosstefan/0fdea1a384ffe01be4b81bdf1d8418c6 to your computer and use it in GitHub Desktop.
Save majirosstefan/0fdea1a384ffe01be4b81bdf1d8418c6 to your computer and use it in GitHub Desktop.
in Storybook for React (web version)
// 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