mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
9 lines
135 B
TypeScript
9 lines
135 B
TypeScript
|
import { defineConfig } from 'cypress';
|
||
|
|
||
|
export default defineConfig({
|
||
|
e2e: {
|
||
|
baseUrl: 'http://localhost:8080'
|
||
|
},
|
||
|
video: true
|
||
|
});
|