1.0.0 • Published 9 years ago
gulp-inlinebase64 v1.0.0
GULP inline-base64
This helper will inject images and fonts into your css files.
Warning ! This technique is really efficient with small files (<14 Kb) cause it avoids DNS requests and makes the page loading faster. But for larger files it will be a mistake to use it !
Install it
npm install --save-dev gulp-inlinebase64Use it
Here is my sass config. As you can see, I use the 'maxSize' option to specitfy that files larger than 14kb are not injected into the css file.
var sass = require('gulp-sass'),
inlinebase64 = require('gulp-inlinebase64'),
autoprefixer = require('gulp-autoprefixer');
...
// SASS
gulp.task('sass', function() {
return gulp.src([
path_src + '/css/**/*.scss',
'!' + path_src + '/css/**/_*.scss'
])
.pipe(sass({
includePaths: [
path_src + '/css/',
'bower_components/',
],
imagePath: path_src
}))
.pipe(inlinebase64({
includes: [
path_src,
],
}))
.pipe(autoprefixer("last 2 version", "> 1%", {
cascade: true
}))
.pipe(gulp.dest(path_tmp + '/css'))
});Options
baseDir: the root path for assetsuseRelativePath: overrides baseDir; root path is relative to the input file's directorymaxSize: define the limit size of injected assetsdebug: show debug messages
Force asset injection
In your css file, just add ,true to the image url : it will force the asset to be injected in base64 in css file, event if the maxSize is reached.
div.logo {
background: transparent url(/img/logo.png,true) no-repeat center center;
}1.0.0
9 years ago