# simpleanalytics/1.110/playwright.config.ts

Simple Analytics, version 1.110. 20 lines.

- Page: https://pluginprobe.com/plugins/simpleanalytics/1.110/code/playwright.config.ts
- Raw: https://pluginprobe.com/plugins/simpleanalytics/1.110/raw/playwright.config.ts
- Modified: 2026-06-18T13:36:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/simpleanalytics/1.110/code/playwright.config.ts#L10-L20`.

```typescript
import { defineConfig } from '@playwright/test';

export default defineConfig({
  testDir: './tests/Browser',
  timeout: 60000,
  use: {
    baseURL: 'http://localhost:8888',
    headless: !process.env.HEADED,
    launchOptions: {
      args: ['--disable-features=PasswordManagerRedesign,AutofillServerCommunication'],
    },
  },
  projects: [
    {
      name: 'chromium',
      use: { browserName: 'chromium' },
    },
  ],
});

```
