I am wondering how to set up an inline svg with webpack?
I am following the react-webpack-cookbook.
I have my webpack.config set up correc
Folks who use svg-inline-loader and who stuck with "Cannot find module" error try to install babel-plugin-inline-react-svg and add it to the babel plugins:
svg-inline-loader
babel-plugin-inline-react-svg
"plugins": [ ... ["inline-react-svg", {}] ], ...