mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
12 lines
287 B
TypeScript
12 lines
287 B
TypeScript
import { defineConfig } from 'vite'
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
|
import playwrightPlugin from '@playwright/experimental-ct-svelte/vitePlugin';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
svelte(),
|
|
playwrightPlugin(),
|
|
]
|
|
})
|