Hi, 

Working with a bootstrap subtheme, gulp and sass.  I have edited my scss files, and compiled the scss to two css files if I use the minifed version in my library:

global-styling:
  css:
    theme:
      css/style.min.css: { minified: true }

The changes are not displayed in my site (but they are in the minified file).

If I change my library to: 

global-styling:
  css:
    theme:
      css/style.css: {}

The changes are displayed. 

I've cleared cache and reloaded the page, rebuilt with gulp.tasks, and toggled the css aggregator in the performance menu, nothings seems to make drupal 8 dispaly my minified css. 

Does anyone know what is going on?

Comments

pthornhi66’s picture

Infuriating

quotientix’s picture

You might have caching disabled in your settings.php oder settings.local.php

$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;