11 lines
221 B
TypeScript
11 lines
221 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:3000',
|
|
viewportWidth: 1440,
|
|
viewportHeight: 900,
|
|
supportFile: false,
|
|
},
|
|
});
|