mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-24 06:49:04 +03: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) });
|
|
});
|
|
});
|