LightningJS supported Chromium version

Hello,

I’m testing my app to different TV monitors and STB boxes.
Philips TV (HFL5214U/12 model) with Chromium 49 has problems to load Blits applications.
(And local chromium 49 on windows PC has the same problem)

I tried to run Demo: https://blits-demo.lightningjs.io/
a black screen is shown and nothing to Debug console
inside the div, the canvas element is never created

But Solid demo runs normal (Solid Demo)

My questions if anyone knows:
What is the minimum version of Chromium supported by Blits?
Is there an application setting which I should set?
Should I move to Solid in this case?
(Other monitors, LG, Samsung, different STB boxes, are OK)

I found the solution to my problem.

First install:
npm i @vitejs/plugin-legacy@5.4.3

and add these lines to vite.config.js

import legacy from ‘@vitejs/plugin-legacy’

plugins: [
…blitsVitePlugins,
legacy({
targets: [‘defaults’, ‘Chrome >= 49’],
}),
],