15 lines
		
	
	
		
			350 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			350 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { defineConfig } from 'cypress'
 | |
| import vitePreprocessor from 'cypress-vite'
 | |
| 
 | |
| export default defineConfig({
 | |
|   e2e: {
 | |
|     baseUrl: 'http://localhost:3333',
 | |
|     chromeWebSecurity: false,
 | |
|     specPattern: 'cypress/e2e/**/*.spec.*',
 | |
|     supportFile: false,
 | |
|     setupNodeEvents(on) {
 | |
|       on('file:preprocessor', vitePreprocessor())
 | |
|     },
 | |
|   },
 | |
| })
 | 
