Skip to content

fix(ssr): prevent rendering duplicate css references

Created by: katarzyna-stachura-orba

There is a chance that the same css file is included in initial and async array, causing a element pointing to the same stylesheet to be included multiple times. This fix ensures that cannot happen. Since multiple build systems exist, this defensive approach avoids any issues with how files are generated regardless of which one is being used by a given project.

What kind of change does this PR introduce? (check at least one)

  • Bugfix
  • Feature
  • Code style update
  • Refactor
  • Build-related changes
  • Other, please describe:

Does this PR introduce a breaking change? (check one)

  • Yes
  • No

If yes, please describe the impact and migration path for existing applications:

The PR fulfills these requirements:

Other information:

Merge request reports