Washaweb
Washaweb
same for me
If you want to use svg files, you have to add a file-loader in your `webpack.dev.js` and `webpack.prod.js` config files (in `rules[]` ) : ``` ... { test: /\.svg$/, loader:...
@chrisschaetzlein either remove the '.' at the beginning of the SVG path or add a slash just after. You URL should look like this: ``` or: ```
@UlpiusCode You could do that (using `url-loader` for your svg images), but doing so, SVG code would be converted in a base64 encoded image. That is not a really a...
@chrisschaetzlein do you place this code in a `` tag ?