mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			216 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			216 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineConfig } from 'vite';
 | 
						|
import solidPlugin from 'vite-plugin-solid';
 | 
						|
 | 
						|
export default defineConfig({
 | 
						|
  plugins: [solidPlugin()],
 | 
						|
  server: {
 | 
						|
    port: 3000,
 | 
						|
  },
 | 
						|
  build: {
 | 
						|
    target: 'esnext',
 | 
						|
  },
 | 
						|
});
 |