Problem
I'm building a website with Typescript Vite React, trying to use the bloom filter in a scene, and it throws the following error:

Here is the EffectComposer in the component's return statement:
// ...
{/* NOTE: Causing null `alpha` error in Chrome */}
<EffectComposer>
<Bloom
luminanceThreshold={0.3}
luminanceSmoothing={0.5}
mipmapBlur
intensity={1.0}
/>
</EffectComposer>
// ...
Problem
I'm building a website with Typescript Vite React, trying to use the bloom filter in a scene, and it throws the following error:

Here is the
EffectComposerin the component's return statement: