mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const { app, protocol } = require('electron');
 | 
						|
const path = require('path');
 | 
						|
 | 
						|
app.on('window-all-closed', e => e.preventDefault());
 | 
						|
 | 
						|
app.whenReady().then(() => {
 | 
						|
  protocol.registerFileProtocol('vscode-file', (request, callback) => {
 | 
						|
    const url = request.url.substring('vscode-file'.length + 3);
 | 
						|
    callback({ path: path.join(__dirname, 'assets', url) });
 | 
						|
  });
 | 
						|
});
 |