We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a45007 commit 13b9852Copy full SHA for 13b9852
1 file changed
playwright.config.ts
@@ -22,7 +22,17 @@ export default defineConfig({
22
projects: [
23
{
24
name: 'chromium',
25
- use: { ...devices['Desktop Chrome'] },
+ use: {
26
+ ...devices['Desktop Chrome'],
27
+ launchOptions: {
28
+ args: [
29
+ '--font-render-hinting=none',
30
+ '--disable-font-subpixel-positioning',
31
+ '--disable-skia-runtime-opts',
32
+ '--disable-lcd-text',
33
+ ],
34
+ },
35
36
},
37
],
38
webServer: {
0 commit comments