If I directly add css styling to /assets/src/scss/app.scss it works perfectly, but when I put this in the same file it would not recompile them to Dist folder…
@import "node_modules/bootstrap/scss/functions";
@import "node_modules/bootstrap/scss/variables";
@import "node_modules/bootstrap/scss/mixins";
@import "node_modules/bootstrap/scss/reboot";
@import "node_modules/bootstrap/scss/navbar";
@import "config";
'use strict';
const gulp = require('gulp');
const sass = require('gulp-sass');
gulp.task('sass', function () {
return gulp.src('src/scss/app.scss')
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('dist/css') );
});
gulp.task('default', function () {
gulp.watch('src/scss/**/*.scss', ['sass']);
});