Skip to content

Commit

Permalink
Fix 404 caused by fix that fixes the initial building of css but fail…
Browse files Browse the repository at this point in the history
…s afterwards in the browser
  • Loading branch information
carakas committed Oct 11, 2018
1 parent c6008f6 commit d08f84a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions gulpfile.js
Expand Up @@ -171,6 +171,9 @@ gulp.task('build:frontend:assets:copy-photoswipe-css-and-images', function () {
}) })


gulp.task('build:frontend:sass:generate-css', function () { gulp.task('build:frontend:sass:generate-css', function () {
gulp.src([
'node_modules/bootstrap-accessibility-plugin/plugins/css/bootstrap-accessibility.css'
]).pipe(gulp.dest('./css/vendors'))
return gulp.src([ return gulp.src([
'src/Frontend/Core/Layout/Sass/debug.scss', 'src/Frontend/Core/Layout/Sass/debug.scss',
'src/Frontend/Core/Layout/Sass/editor_content.scss', 'src/Frontend/Core/Layout/Sass/editor_content.scss',
Expand Down
2 changes: 1 addition & 1 deletion src/Frontend/Themes/Fork/Core/Layout/Sass/screen.scss
Expand Up @@ -21,7 +21,7 @@ $fa-font-path: '/fonts/vendors';
@import 'base/base'; @import 'base/base';


// Accessibility // Accessibility
@import './node_modules/bootstrap-accessibility-plugin/plugins/css/bootstrap-accessibility.css'; @import './css/vendors/bootstrap-accessibility';


// Components // Components
@import 'components/breadcrumbs'; @import 'components/breadcrumbs';
Expand Down

0 comments on commit d08f84a

Please sign in to comment.