Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shuding committed Jun 9, 2023
1 parent c8fae60 commit ac01d24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export function getCssInlinedLinkTags(

const entryCSSFiles =
clientReferenceManifest.entryCSSFiles[filePathWithoutExt]
if (entryCSSFiles) {
if (Array.isArray(entryCSSFiles)) {
for (const file of entryCSSFiles.files) {
if (!injectedCSS.has(file)) {
if (collectNewCSSImports) {
Expand Down

0 comments on commit ac01d24

Please sign in to comment.