I\'m trying to add Storybook to an existing React app but getting errors with imported svg files. The svg is imported and used like:
import Border from \'./i
I got it working with
... module.exports = { module: { rules: [ { test: /\.inline.svg$/, loader: 'svg-react-loader' } ] } }