mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
const path = require('node:path');
|
|
|
|
const { injectCSS } = require('../utils');
|
|
|
|
module.exports = (win, options) => {
|
|
injectCSS(win.webContents, path.join(__dirname, 'empty-player.css'));
|
|
};
|