[READ-ONLY] Mirror of https://github.com/danielroe/page-speed.dev. See and share Core Web Vitals and PageSpeed Insights results simply and easily. page-speed.dev
core-web-vitals pagespeed performance
0

Configure Feed

Select the types of activity you want to include in your feed.

page-speed.dev / playwright.config.ts
507 B 21 lines
1import { fileURLToPath } from 'node:url' 2import { defineConfig } from '@playwright/test' 3import type { ConfigOptions } from '@nuxt/test-utils/playwright' 4 5export default defineConfig<ConfigOptions>({ 6 use: { 7 // baseURL: 'https://page-speed.dev', 8 nuxt: { 9 rootDir: fileURLToPath(new URL('.', import.meta.url)), 10 nuxtConfig: { 11 nitro: { 12 storage: { 13 pagespeed: { 14 driver: 'mock-driver', 15 }, 16 }, 17 }, 18 }, 19 }, 20 }, 21})