Closed
Description
Hi, looking at the default gulpfile.babel.js
, it didn't seem to include these files automatically:
<link rel="stylesheet" href="components/themes/admin-lte/css/custom.css" />
Default style rule:
gulp.src(``${clientPath}/{app,components}/**/*.css``, {read: false})
From what I can tell, above rule should also cover the custom.css
.
Also, it doesn't seem to include these bower files automatically:
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="bower_components/AdminLTE/dist/css/skins/_all-skins.min.css" />
It does however include these files automatically:
<link rel="stylesheet" href="bower_components/AdminLTE/dist/css/AdminLTE.css" />
<script src="bower_components/AdminLTE/dist/js/app.js"></script>
I'm not sure why it automatically include AdminLTE.css
but not _all-skins.min.css
& font-awesome.min.css
. Tried to update the gulpfile but seems like it should include them as well.
Any idea why?