We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d945d3 commit 1060da1Copy full SHA for 1060da1
src/lib/_imports/_preview.hbs
@@ -8,15 +8,12 @@
8
9
{{! styles: global (for every component) }}
10
{{! (manually configured) }}
11
-{{#if styles.external.global}}
12
- {{#each styles.external.global}}
13
- <link rel='stylesheet' href='{{this}}' />
14
- {{/each}}
15
-{{else if styles.internal.global}}
16
- {{#each styles.internal.global}}
17
- <link rel='stylesheet' href='{{path this}}' />
18
19
-{{/if}}
+{{#each styles.external.global}}
+ <link rel='stylesheet' href='{{this}}' />
+{{/each}}
+{{#each styles.internal.global}}
+ <link rel='stylesheet' href='{{path this}}' />
20
21
{{! styles: local (for current component) }}
22
{{! (automatically found) }}
0 commit comments