9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
|
import { defineConfig } from 'cypress';
|
||
|
import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
|
||
|
|
||
|
export default defineConfig({
|
||
|
e2e: nxE2EPreset(__dirname, {
|
||
|
bundler: 'vite',
|
||
|
}),
|
||
|
});
|