Skip to content
Snippets Groups Projects
Commit 71eef868 authored by Philipp Nowinski's avatar Philipp Nowinski
Browse files

[BUGFIX] fix source path in readme

parent c1dc87d4
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ Then, add it to your `gulpfile.js`. I'd recommend to use it in conjunction with
var inlineSvg = require("gulp-inline-svg"),
svgMin = require('gulp-svgmin');
gulp.src("css/**/*.css")
gulp.src("images/svgs/**/*.svg")
.pipe(svgMin())
.pipe(inlineSvg())
.pipe(gulp.dest("sass"));
......@@ -63,7 +63,7 @@ The _svg.scss file will provide you with the following mixins and functions:
If you want wo customize the default configuration, you can pass an options object to the task function:
```javascript
gulp.src("css/**/*.css")
gulp.src("images/svgs/**/*.svg")
.pipe(svgMin())
.pipe(inlineSvg({
filename: '_svg-file.scss',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment