MODULE.libraries.yml
live_mode: version: VERSION header: true js: https://〜/〜.js: { type: external } test_mode: version: VERSION header: true js: https://〜/〜.js: { type: external }
MODULE.module
function MODULE_preprocess_html(&$variables) { 〜 $mode = $configuration['mode']; $variables['#attached']['library'][] = "MODULE/{$mode}_mode"; 〜 }