12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
const frontendPort = process.env.VITE_PORT ?? '5173'
|
|
|
|
export default defineConfig({
|
|
allowCypressEnv: false,
|
|
e2e: {
|
|
baseUrl: `https://localhost:${frontendPort}`,
|
|
supportFile: false,
|
|
},
|
|
video: false,
|
|
})
|