diff --git a/source/index.ts b/source/index.ts index 793d4c2..1e92934 100644 --- a/source/index.ts +++ b/source/index.ts @@ -313,7 +313,11 @@ class Chromium { `Graphics mode must be a boolean, you entered '${value}'` ); } - this.graphicsMode = value; + + // Disabling 'disabling the gpu' + // Blocked by https://github.com/Sparticuz/chromium/issues/247 + // this.graphicsMode = value; + this.graphicsMode = true; } }