2022-04-22 02:30:17 +02:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import { svelte } from '@sveltejs/vite-plugin-svelte'
|
2022-04-22 06:07:43 +02:00
|
|
|
import playwright from '@playwright/experimental-ct-svelte/vitePlugin';
|
2022-04-22 02:30:17 +02:00
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [
|
|
|
|
|
svelte(),
|
2022-04-22 06:07:43 +02:00
|
|
|
playwright(),
|
2022-04-22 02:30:17 +02:00
|
|
|
]
|
|
|
|
|
})
|