テーマ:基本8.x-1.x-dev
twigファイルに変更を加えた後、テーマデータをクリアしようとしています。rebuildThemeDataがここにあることがわかります: https://goo.gl/EA2YL4
現在、これを.themeファイルに入れています。
\Drupal::service('theme_handler')->rebuildThemeData();
\Drupal::service('theme.registry')->reset();
誰かがこの種の実装を完了して例のために働いていますか? https://www.drupal.org/node/2608470
開発中に構成できるsites/default
構成ファイルには、D8に付属するいくつかのデフォルトがあります。
アプリケーション部分:
Open development.services.yml in the sites folder
and add the following block (to disable twig cache)
parameters:
twig.config:
debug : true
auto_reload: true
cache: false
これに関する詳細情報があります Drupal.orgノード 。