mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			362 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			362 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const { defineConfig } = require('@vue/cli-service')
 | |
| module.exports = defineConfig({
 | |
|   transpileDependencies: true,
 | |
|   pages: {
 | |
|     index: {
 | |
|       entry: 'src/main.js',
 | |
|       template: 'public/index.html',
 | |
|       filename: 'index.html',
 | |
|     },
 | |
|     tests: {
 | |
|       entry: 'src/tests.js',
 | |
|       template: 'src/tests.html',
 | |
|       filename: 'tests.html',
 | |
|     },
 | |
|   }
 | |
| })
 | 
